mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-02-17 23:53:15 +01:00
15 lines
244 B
Bash
15 lines
244 B
Bash
|
#!/usr/bin/env bash
|
||
|
test_description='"notmuch show"'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
add_email_corpus
|
||
|
|
||
|
test_begin_subtest "exit code for show invalid query"
|
||
|
test_subtest_known_broken
|
||
|
notmuch show foo..
|
||
|
exit_code=$?
|
||
|
test_expect_equal 1 $exit_code
|
||
|
|
||
|
test_done
|