mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
8d863c9e87
While looked good on paper, its attempted use caused confusion, complexity, and potential for information leak when passed through wrapper scripts. For slimmer code and to lessen demand for maintenance/support the set of commits which added top level --stderr= option is now reverted.
12 lines
364 B
Bash
Executable file
12 lines
364 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 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
|