X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=test%2FT010-help-test.sh;h=827edc149a727bb5427fcb53d8a11ab6516b9bc1;hb=HEAD;hp=f7df725eea611797c333ba7a5a759cf31b9171f0;hpb=957fc2e1a7d00636c7eaaf487edae65e7a63dc8f;p=notmuch diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh index f7df725e..827edc14 100755 --- a/test/T010-help-test.sh +++ b/test/T010-help-test.sh @@ -1,12 +1,32 @@ #!/usr/bin/env bash test_description="online help" -. ./test-lib.sh +. $(dirname "$0")/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' +test_begin_subtest 'notmuch --help' +test_expect_success 'notmuch --help' + +test_begin_subtest 'notmuch help' +test_expect_success 'notmuch help' + +test_begin_subtest 'notmuch --version' +test_expect_success 'notmuch --version' + +if [ "${NOTMUCH_HAVE_MAN-0}" = "1" ]; then + test_begin_subtest 'notmuch --help tag' + test_expect_success 'notmuch --help tag' + + test_begin_subtest 'notmuch help tag' + test_expect_success 'notmuch help tag' +else + if [ -n "${NOTMUCH_TEST_INSTALLED-}" ]; then + test_done + fi + test_begin_subtest 'notmuch --help tag (man pages not available)' + test_expect_success 'test_must_fail notmuch --help tag >/dev/null' + + test_begin_subtest 'notmuch help tag (man pages not available)' + test_expect_success 'test_must_fail notmuch help tag >/dev/null' +fi test_done