mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
783a559968
In the case the these tests fail, they generate a bunch of output; this output is not very interesting because it is just the successful output of a man page. It does however make it hard to see what tests are actually failing, even with NOTMUCH_TEST_QUIET
20 lines
656 B
Bash
Executable file
20 lines
656 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
test_description="online help"
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success 'notmuch --help' 'notmuch --help'
|
|
test_expect_success 'notmuch help' 'notmuch help'
|
|
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
|