diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-18 23:58:49 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-19 12:39:46 +0300 |
| commit | 972535a6ac9fb1f9611c1b68293f7df88ec1b1f7 (patch) | |
| tree | ed17817547da3e20c5c3080075c8924c24f6b3f9 /test cases/common/63 array methods/meson.build | |
| parent | edf901431272e5bb348e265113179c337f65a881 (diff) | |
| download | meson-972535a6ac9fb1f9611c1b68293f7df88ec1b1f7.tar.gz | |
Condense test dirs.
Diffstat (limited to 'test cases/common/63 array methods/meson.build')
| -rw-r--r-- | test cases/common/63 array methods/meson.build | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/test cases/common/63 array methods/meson.build b/test cases/common/63 array methods/meson.build deleted file mode 100644 index cdda41dbf..000000000 --- a/test cases/common/63 array methods/meson.build +++ /dev/null @@ -1,46 +0,0 @@ -project('array methods', 'c') - -empty = [] -one = ['abc'] -two = ['def', 'ghi'] -combined = [empty, one, two] - -if empty.contains('abc') - error('Empty is not empty.') -endif - -if one.contains('a') - error('One claims to contain a') -endif - -if not one.contains('abc') - error('One claims to not contain abc.') -endif - -if one.contains('abcd') - error('One claims to contain abcd.') -endif - -if two.contains('abc') - error('Two claims to contain abc.') -endif - -if not two.contains('def') - error('Two claims not to contain def.') -endif - -if not two.contains('ghi') - error('Two claims not to contain ghi.') -endif - -if two.contains('defg') - error('Two claims to contain defg.') -endif - -if not combined.contains('abc') - error('Combined claims not to contain abc.') -endif - -if not combined.contains('ghi') - error('Combined claims not to contain ghi.') -endif |
