diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/rm.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/rm.test b/tests/rm.test index 9f2b8012..ab6a97d7 100755 --- a/tests/rm.test +++ b/tests/rm.test @@ -11,6 +11,8 @@ echo "abcdefghijklmnopqrstuvwxyz" > file.txt testing "text-file" "rm file.txt && [ ! -e file.txt ] && echo 'yes'" "yes\n" "" "" rm -f file* +testing "-i nonexistent" "</dev/zero rm -i file.txt 2>/dev/null || echo 'yes'" "yes\n" "" "" + mkdir dir testing "empty directory" "rm -r dir && [ ! -d dir ] && echo 'yes'" "yes\n" "" "" rm -rf dir |