X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2FT010-help-test.sh;h=c173237631125ebd68894508763f1f61fab94d74;hp=f7df725eea611797c333ba7a5a759cf31b9171f0;hb=b8f12bd3717aa446ef04197734af7a055e6909fe;hpb=957fc2e1a7d00636c7eaaf487edae65e7a63dc8f diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh index f7df725e..c1732376 100755 --- a/test/T010-help-test.sh +++ b/test/T010-help-test.sh @@ -1,12 +1,20 @@ #!/usr/bin/env bash test_description="online help" -. ./test-lib.sh +. ./test-lib.sh || exit 1 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