notmuch/test/T010-help-test.sh
Jani Nikula d7d728a622 test: conditionally test help system depending on configured support
If neither sphinx nor rst2man is available, the notmuch man pages will
not be available. Take this into account in the help system test.
2014-03-26 07:43:36 -03:00

20 lines
633 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 ${TEST_DIRECTORY}/have-man; 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'
test_expect_success 'notmuch help tag (man pages not available)' \
'test_must_fail notmuch help tag'
fi
test_done