aboutsummaryrefslogtreecommitdiff
path: root/tests/more.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/more.test')
-rwxr-xr-xtests/more.test14
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