diff options
Diffstat (limited to 'tests/more.test')
-rwxr-xr-x | tests/more.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/more.test b/tests/more.test new file mode 100755 index 00000000..4dcf6d85 --- /dev/null +++ b/tests/more.test @@ -0,0 +1,14 @@ +#!/bin/bash + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +cat >file1 <<EOF +line1 +line2 +EOF + +testing "non-tty" "more file1 | cat -" "line1\nline2\n" "" "" + +rm file1 |