X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=test%2FT010-help-test.sh;h=da45d3aecf7ae7a0c6e86be06f6d21155c50129b;hp=caf8bdb094805f54ccbbe232a78cc26a4a504c5c;hb=2707c06a0fc587a68096a3ec6f054ba4f0d7e7c7;hpb=f5db7ad7d243785c274a99734c681e69d13313d0 diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh index caf8bdb0..da45d3ae 100755 --- a/test/T010-help-test.sh +++ b/test/T010-help-test.sh @@ -1,20 +1,29 @@ #!/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' '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' - test_expect_success 'notmuch help tag (man pages not available)' \ - 'test_must_fail notmuch help tag' + 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