From: Karl Hasselström Date: Sun, 23 Sep 2007 22:54:06 +0000 (+0200) Subject: New test: make sure tha we can run "stg help" X-Git-Tag: v0.14~81 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/cd41b7d7abf72367ec982e0cf441ec03806c3956?ds=sidebyside New test: make sure tha we can run "stg help" Signed-off-by: Karl Hasselström --- diff --git a/t/t0100-help.sh b/t/t0100-help.sh new file mode 100755 index 0000000..d1550ba --- /dev/null +++ b/t/t0100-help.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +test_description='Run "stg help"' + +. ./test-lib.sh + +test_expect_success 'Run "stg help"' ' + stg help + ' + +test_expect_success 'Run "stg --help"' ' + stg --help + ' + +test_done