mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
16 lines
300 B
Bash
16 lines
300 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
test_description="command line arguments"
|
||
|
. ./test-lib.sh || exit 1
|
||
|
|
||
|
NOTMUCH_NEW > /dev/null
|
||
|
|
||
|
test_begin_subtest 'bad option to show'
|
||
|
notmuch show --frobnicate >& OUTPUT
|
||
|
cat <<EOF > EXPECTED
|
||
|
Unrecognized option: --frobnicate
|
||
|
EOF
|
||
|
test_expect_equal_file EXPECTED OUTPUT
|
||
|
|
||
|
test_done
|