Add the non-tty more(1) test.

(This was supposed to be in the earlier patch, but I was fooled by
"git commit -a" yet again...)
This commit is contained in:
Elliott Hughes 2016-04-23 14:20:38 -07:00 committed by Rob Landley
parent 072ea41682
commit 675b5dc240

14
tests/more.test Executable file
View File

@ -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