summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian A. Weber2018-06-19 18:53:09 +0200
committerChristian A. Weber2018-06-19 18:53:09 +0200
commit4cd6a23b8c2a5f20f51d2a53b65bd7586e367a3c (patch)
tree8b6c0373eb4be682d299eea7ce944043495e0227 /tests
parent82ff67d50a245c09f9c7c49b2c50f17b7dc06679 (diff)
downloaditools-4cd6a23b8c2a5f20f51d2a53b65bd7586e367a3c.tar.gz
itools-4cd6a23b8c2a5f20f51d2a53b65bd7586e367a3c.tar.bz2
itools-4cd6a23b8c2a5f20f51d2a53b65bd7586e367a3c.zip
remove bogus function that nobody uses, fix comment of transmogrify()
Diffstat (limited to 'tests')
-rwxr-xr-xtests/it.t4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/it.t b/tests/it.t
index ef3dfdb..08640cf 100755
--- a/tests/it.t
+++ b/tests/it.t
@@ -454,10 +454,6 @@ is(it::map('2*$v', ['foo' => 1, 'bar' => 2], ['keys' => 'foo']), ['foo' => 2, 'b
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");
-
is(it::split("b", "aba"), ["a", "a"]);
is(it::split("b", "aBa"), ["a", "a"]);
is(it::split("b", "abba"), ["a", "", "a"]);