aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/T010-help-test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/T010-help-test.sh')
-rwxr-xr-xtest/T010-help-test.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh
index f7df725e..77410bc5 100755
--- a/test/T010-help-test.sh
+++ b/test/T010-help-test.sh
@@ -4,9 +4,17 @@ test_description="online help"
. ./test-lib.sh
test_expect_success 'notmuch --help' 'notmuch --help'
-test_expect_success 'notmuch --help tag' 'notmuch --help tag'
test_expect_success 'notmuch help' 'notmuch help'
-test_expect_success 'notmuch help tag' 'notmuch help tag'
test_expect_success 'notmuch --version' 'notmuch --version'
+if ${TEST_DIRECTORY}/have-man; then
+ test_expect_success 'notmuch --help tag' 'notmuch --help tag'
+ test_expect_success 'notmuch help tag' 'notmuch help tag'
+else
+ test_expect_success 'notmuch --help tag (man pages not available)' \
+ 'test_must_fail notmuch --help tag'
+ test_expect_success 'notmuch help tag (man pages not available)' \
+ 'test_must_fail notmuch help tag'
+fi
+
test_done