]> git.notmuchmail.org Git - notmuch/blob - test/T520-show.sh
test: add known broken test exit code of notmuch show
[notmuch] / test / T520-show.sh
1 #!/usr/bin/env bash
2 test_description='"notmuch show"'
3
4 . ./test-lib.sh
5
6 add_email_corpus
7
8 test_begin_subtest "exit code for show invalid query"
9 test_subtest_known_broken
10 notmuch show foo..
11 exit_code=$?
12 test_expect_equal 1 $exit_code
13
14 test_done