diff options
Diffstat (limited to 'tests/dirname.test')
-rwxr-xr-x | tests/dirname.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/dirname.test b/tests/dirname.test new file mode 100755 index 00000000..a0075384 --- /dev/null +++ b/tests/dirname.test @@ -0,0 +1,10 @@ +#!/bin/bash + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +testing "dirname /-only" "dirname ///////" "/\n" "" "" +testing "dirname trailing /" "dirname a//////" ".\n" "" "" +testing "dirname combined" "dirname /////a///b///c///d/////" "/////a///b///c\n" "" "" +testing "dirname /a/" "dirname /////a///" "/\n" "" "" |