X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2FT010-help-test.sh;h=d7266ffca73d945c75fbab0aab198d543cb81768;hp=f7df725eea611797c333ba7a5a759cf31b9171f0;hb=783a559968968a407cbaa42249613216c27d54f8;hpb=28d7544ae2adfe6467c6b64a3284f5ed13f81e1a diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh index f7df725e..d7266ffc 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 >/dev/null' + test_expect_success 'notmuch help tag (man pages not available)' \ + 'test_must_fail notmuch help tag >/dev/null' +fi + test_done