X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=blobdiff_plain;f=tests%2Flib.sh.test;h=e46e937678a5126baf60812efd731c2706d31d46;hp=5db26dcf3eae59f4b47ce217a9c19b2e02ae427e;hb=7fe0556786e569f981dfb20ba0ac9c74983e7ed0;hpb=1384fc92cc646c4fa666819682ff288d572641ab diff --git a/tests/lib.sh.test b/tests/lib.sh.test index 5db26dc..e46e937 100644 --- a/tests/lib.sh.test +++ b/tests/lib.sh.test @@ -18,56 +18,6 @@ . ../lib.sh -# which with proper exit codes and output to stdout. -which() { - if [ $1 = ls ]; then - echo /bin/ls - else - echo no doesnt-exist in /usr/bin /bin /usr/sbin /sbin - return 1 - fi -} -echo stdout which -installed ls && echo ls installed -installed doesnt-exist && echo doesnt-exist installed - -# which with proper exit codes and output to stderr in case of an error. -which() { - if [ $1 = ls ]; then - echo /bin/ls - else - echo no doesnt-exist in /usr/bin /bin /usr/sbin /sbin >&2 - return 1 - fi -} -echo stderr which -installed ls && echo ls installed -installed doesnt-exist && echo doesnt-exist installed - -# which with no proper exit codes and output to stdout in case of an error. -which() { - if [ $1 = ls ]; then - echo /bin/ls - else - echo no doesnt-exist in /usr/bin /bin /usr/sbin /sbin - fi -} -echo stupid which -installed ls && echo ls installed -installed doesnt-exist && echo doesnt-exist installed - -# which with proper exit codes and no output in case of an error. -which() { - if [ $1 = ls ]; then - echo /bin/ls - else - return 1 - fi -} -echo different which -installed ls && echo ls installed -installed doesnt-exist && echo doesnt-exist installed - # Tests for generate(). echo "Simple test file for generate() using m4.