X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT010-help-test.sh;h=caf8bdb094805f54ccbbe232a78cc26a4a504c5c;hb=d99491f27440d83f937131a861ca547bffb8bdf1;hp=f7df725eea611797c333ba7a5a759cf31b9171f0;hpb=a755c9d6a9099366cc82ba3a4bee8e6d2b83d529;p=notmuch diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh index f7df725e..caf8bdb0 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 [ $NOTMUCH_HAVE_MAN -eq 1 ]; 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