From 198b2b48345c175dc184258677fd48043dc1a78b Mon Sep 17 00:00:00 2001 From: "maqsood3525@live.com" Date: Wed, 29 Aug 2018 23:27:17 +0100 Subject: added fold test for discussion --- tests/fold.test | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 tests/fold.test (limited to 'tests/fold.test') diff --git a/tests/fold.test b/tests/fold.test new file mode 100755 index 00000000..ab3353dd --- /dev/null +++ b/tests/fold.test @@ -0,0 +1,15 @@ +#!/bin/bash + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +#copied from gnu, but according to what i understand the output should be. + +testing "fold_test_1" "fold -w2 -s" "a\t\n" "" "a\t" +testing "fold_test_2" "fold -w4 -s" "abcd\nef \nd\n" "" "abcdef d\n" +testing "fold_test_3" "fold -w4 -s" "a \ncd \nfgh\n" "" "a cd fgh\n" +testing "fold_test_4" "fold -w4 -s" "abc \nef\n" "" "abc ef\n" + +#the question i posted +testing "fold_test_5" "fold -w1" "a\nb\nc\nd\n" "" "abcd" -- cgit v1.2.3