diff options
Diffstat (limited to 'testsuite/fold.tests')
-rwxr-xr-x | testsuite/fold.tests | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/fold.tests b/testsuite/fold.tests new file mode 100755 index 000000000..5e1f34552 --- /dev/null +++ b/testsuite/fold.tests | |||
@@ -0,0 +1,14 @@ | |||
1 | #!/bin/sh | ||
2 | # Copyright 2009 by Denys Vlasenko | ||
3 | # Licensed under GPL v2, see file LICENSE for details. | ||
4 | |||
5 | . testing.sh | ||
6 | |||
7 | # testing "test name" "options" "expected result" "file input" "stdin" | ||
8 | |||
9 | testing "fold -s" "fold -w 7 -s" \ | ||
10 | "123456\n\t\nasdf" \ | ||
11 | "" \ | ||
12 | "123456\tasdf" \ | ||
13 | |||
14 | exit $FAILCOUNT | ||