diff options
Diffstat (limited to 'tests/function/path/testscript')
-rw-r--r-- | tests/function/path/testscript | 11 |
1 files changed, 11 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'); |