]> git.notmuchmail.org Git - notmuch/blobdiff - test/help-test
test: add simple tests for online help
[notmuch] / test / help-test
diff --git a/test/help-test b/test/help-test
new file mode 100755 (executable)
index 0000000..9f4b9c7
--- /dev/null
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+test_description="online help"
+. test-lib.sh
+
+test_expect_success 'notmuch --help' 'notmuch --help'
+test_expect_success 'notmuch --help tag' 'notmuch --help tag'
+test_expect_success 'notmuch help' 'notmuch help'
+test_expect_success 'notmuch help tag' 'notmuch help tag'
+test_expect_success 'notmuch --version' 'notmuch --version'
+
+test_done