X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2FT010-help-test.sh;h=0c833de262170f5aea7b778aa62bcef0f9ed4d63;hb=58bf820b78f90c3db57fdd95a73fe76dc800733f;hp=c173237631125ebd68894508763f1f61fab94d74;hpb=33c8777a967ece2dd4bbda7e83a4e07c195abf51;p=notmuch diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh index c1732376..0c833de2 100755 --- a/test/T010-help-test.sh +++ b/test/T010-help-test.sh @@ -3,18 +3,27 @@ test_description="online help" . ./test-lib.sh || exit 1 -test_expect_success 'notmuch --help' 'notmuch --help' -test_expect_success 'notmuch help' 'notmuch help' -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 -eq 1 ]; then - test_expect_success 'notmuch --help tag' 'notmuch --help tag' - test_expect_success 'notmuch help tag' 'notmuch help tag' + 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 - 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' + 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