From 216e4dab193458ba396db861a5eb6d410f80d1c8 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 4 Apr 2017 18:13:51 -0500 Subject: Add "testcmd" function as an alternative to "testing" for tests/*.test, and check in two converted commands. --- tests/basename.test | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'tests/basename.test') diff --git a/tests/basename.test b/tests/basename.test index ab2cc20a..25e5493f 100755 --- a/tests/basename.test +++ b/tests/basename.test @@ -5,22 +5,22 @@ #testing "name" "command" "result" "infile" "stdin" # Removal of extra /'s -testing "/-only" "basename ///////" "/\n" "" "" -testing "trailing /" "basename a//////" "a\n" "" "" -testing "combined" "basename /////a///b///c///d/////" "d\n" "" "" +testcmd "/-only" "///////" "/\n" "" "" +testcmd "trailing /" "a//////" "a\n" "" "" +testcmd "combined" "/////a///b///c///d/////" "d\n" "" "" # Standard suffix behavior. -testing "suffix" "basename a/b/c/d.suffix .suffix" "d\n" "" "" +testcmd "suffix" "a/b/c/d.suffix .suffix" "d\n" "" "" # A suffix cannot be the entire result. -testing "suffix=result" "basename .txt .txt" ".txt\n" "" "" +testcmd "suffix=result" ".txt .txt" ".txt\n" "" "" # Deal with suffix appearing in the filename -testing "reappearing suffix 1" "basename a.txt.txt .txt" "a.txt\n" "" "" -testing "reappearing suffix 2" "basename a.txt.old .txt" "a.txt.old\n" "" "" +testcmd "reappearing suffix 1" "a.txt.txt .txt" "a.txt\n" "" "" +testcmd "reappearing suffix 2" "a.txt.old .txt" "a.txt.old\n" "" "" # A suffix should be a real suffix, only a the end. -testing "invalid suffix" "basename isthisasuffix? suffix" "isthisasuffix?\n" "" "" +testcmd "invalid suffix" "isthisasuffix? suffix" "isthisasuffix?\n" "" "" # Zero-length suffix -testing "zero-length suffix" "basename a/b/c ''" "c\n" "" "" +testcmd "zero-length suffix" "a/b/c ''" "c\n" "" "" -- cgit v1.2.3