aboutsummaryrefslogtreecommitdiff
path: root/tests/uuencode.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/uuencode.test')
-rwxr-xr-xtests/uuencode.test18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/uuencode.test b/tests/uuencode.test
index 7c19faa3..b2a61dc1 100755
--- a/tests/uuencode.test
+++ b/tests/uuencode.test
@@ -4,23 +4,23 @@
#testing "name" "command" "result" "infile" "stdin"
-testing "uuencode not enough args [fail]" "uuencode 2>/dev/null" "" "" ""
+testing "not enough args [fail]" "uuencode 2>/dev/null" "" "" ""
-testing "uuencode uu empty file" "uuencode test" \
+testing "uu empty file" "uuencode test" \
"begin 744 test\nend\n" "" ""
-testing "uuencode uu 1-char" "uuencode test" \
+testing "uu 1-char" "uuencode test" \
"begin 744 test\n!80\`\`\nend\n" "" "a"
-testing "uuencode uu 2-char" "uuencode test" \
+testing "uu 2-char" "uuencode test" \
"begin 744 test\n\"86(\`\nend\n" "" "ab"
-testing "uuencode uu 3-char" "uuencode test" \
+testing "uu 3-char" "uuencode test" \
"begin 744 test\n#86)C\nend\n" "" "abc"
-testing "uuencode b64 empty file" "uuencode -m test" \
+testing "b64 empty file" "uuencode -m test" \
"begin-base64 744 test\n====\n" "" ""
-testing "uuencode b64 1-char" "uuencode -m test" \
+testing "b64 1-char" "uuencode -m test" \
"begin-base64 744 test\nYQ==\n====\n" "" "a"
-testing "uuencode b64 2-char" "uuencode -m test" \
+testing "b64 2-char" "uuencode -m test" \
"begin-base64 744 test\nYWI=\n====\n" "" "ab"
-testing "uuencode b64 3-char" "uuencode -m test" \
+testing "b64 3-char" "uuencode -m test" \
"begin-base64 744 test\nYWJj\n====\n" "" "abc"