chiark / gitweb /
New test: make sure tha we can run "stg help"
authorKarl Hasselström <kha@treskal.com>
Sun, 23 Sep 2007 22:54:06 +0000 (00:54 +0200)
committerKarl Hasselström <kha@treskal.com>
Sun, 23 Sep 2007 22:54:06 +0000 (00:54 +0200)
Signed-off-by: Karl Hasselström <kha@treskal.com>
t/t0100-help.sh [new file with mode: 0755]

diff --git a/t/t0100-help.sh b/t/t0100-help.sh
new file mode 100755 (executable)
index 0000000..d1550ba
--- /dev/null
@@ -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