aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-11-26 11:04:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-11-26 11:13:42 +0200
commita8a54893c09c86e560e6fee9d7972419716dd56d (patch)
treeeae16c1efe034f8593de4cc7981268d584a027c1 /tests
parent234869bfab747a373ac8815fc567957a8b05237e (diff)
Add $size(string), $size(path), and $size(dir_path) functions
Diffstat (limited to 'tests')
-rw-r--r--tests/function/path/testscript11
-rw-r--r--tests/function/string/testscript7
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/function/path/testscript b/tests/function/path/testscript
index e674497..55d727f 100644
--- a/tests/function/path/testscript
+++ b/tests/function/path/testscript
@@ -119,6 +119,17 @@ if! $posix
}
}
+: size
+:
+{
+ $* <'print $size([path] abc)' >'3' : basics
+ $* <'print $size([path] )' >'0' : zero
+
+ $* <'print $size([dir_path] abc)' >'3' : dir-basics
+ $* <'print $size([dir_path] abc/)' >'3' : dir-separator
+ $* <'print $size([dir_path] )' >'0' : dir-zero
+}
+
: invalid-path
:
p = ($posix ? /../foo : 'c:/../foo');
diff --git a/tests/function/string/testscript b/tests/function/string/testscript
index 5f80bfe..00835ce 100644
--- a/tests/function/string/testscript
+++ b/tests/function/string/testscript
@@ -39,3 +39,10 @@
$* <'print $sort([strings] a c b a, dedup)' >'a b c' : dedup
$* <'print $sort([strings] a C B a, icase)' >'a a B C' : icase
}
+
+: size
+:
+{
+ $* <'print $size([string] abc)' >'3' : basics
+ $* <'print $size([string] )' >'0' : zero
+}