diff options
author | Urban Müller | 2017-06-01 17:51:02 +0200 |
---|---|---|
committer | Urban Müller | 2017-06-01 17:51:02 +0200 |
commit | 9e266afd380229e578c1b4dc2e32b5506dd99e57 (patch) | |
tree | 7c44e6d6f8be44909e8d66a4f0a5804f9bf02a7b /tests | |
parent | 6a62ac385b25602496daf445ab9a7185cae1948b (diff) | |
download | itools-9e266afd380229e578c1b4dc2e32b5506dd99e57.tar.gz itools-9e266afd380229e578c1b4dc2e32b5506dd99e57.tar.bz2 itools-9e266afd380229e578c1b4dc2e32b5506dd99e57.zip |
tests for it::filter
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it.t | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -439,6 +439,10 @@ is(it::map('2*$v', [3, 4, 5], ['keys' => '0,1']), [6, 8, 5]); is(it::map('2*$v', [3, 4, 5], ['keys' => [0,1]]), [6, 8, 5]); is(it::map('2*$v', ['foo' => 1, 'bar' => 2], ['keys' => 'foo']), ['foo' => 2, 'bar' => 2]); +# it::filter +is(it::filter('$v > 2', [1, 5 => 2, 2 => 3]), [2 => 3]); +is(it::filter('$k > 2', [1, 5 => 2, 2 => 3]), [5 => 2]); + is(it::add_dir("foo/bar"), "foo/37/bar"); is(it::add_dir("baz/bar"), "baz/37/bar"); is(it::add_dir("bar"), "./37/bar"); |