aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/T010-help-test.sh
blob: caf8bdb094805f54ccbbe232a78cc26a4a504c5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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'
    test_expect_success 'notmuch help tag (man pages not available)' \
	'test_must_fail notmuch help tag'
fi

test_done