mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
a863de1e43
Don't assume the tests are always run from within the source tree.
29 lines
827 B
Bash
Executable file
29 lines
827 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test_description="online help"
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
|
|
|
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_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_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
|