]> git.notmuchmail.org Git - notmuch/blobdiff - test/T010-help-test.sh
test: conditionally test help system depending on configured support
[notmuch] / test / T010-help-test.sh
index f7df725eea611797c333ba7a5a759cf31b9171f0..77410bc54e66253b57fccef0013f0d4c3034acf4 100755 (executable)
@@ -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