X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;ds=sidebyside;f=run-tests.sh;h=ad50c796d2d4467c0bc2a85998088a32101f6857;hb=95e752b65a9ce49d707c16a521f141ef2f0c4a3b;hp=68b3b80907b125602ac8d468a373656a7ceec011;hpb=2713726701c897b449d06aca5d7dc22c0b43e653;p=apply-default-acl.git diff --git a/run-tests.sh b/run-tests.sh index 68b3b80..ad50c79 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -864,3 +864,13 @@ mkdir "${TESTDIR}/baz" ACTUAL="$?" EXPECTED="0" compare + + +# We should get "Not a directory" if we stick a trailing slash on the +# end of the path to a file. +TESTNUM=39 +TARGET="${TESTDIR}/foo" +touch "${TARGET}" +ACTUAL=$( "${BIN}" "${TARGET}/" 2>&1 ) +EXPECTED="${TARGET}/: Not a directory" +compare