test: add a known broken test for S/MIME decryption

This should serve to clarify this feature is not implimented in
notmuch yet.
This commit is contained in:
David Bremner 2019-11-17 21:58:12 -04:00
parent a7884929d5
commit 6cd47227de

View file

@ -94,4 +94,13 @@ Verification successful
EOF
test_expect_equal_file EXPECTED OUTPUT
test_begin_subtest "Decryption (notmuch CLI)"
test_subtest_known_broken
notmuch show --decrypt=true subject:"test encrypted message 001" |\
grep "^This is a" > OUTPUT
cat <<EOF > EXPECTED
This is a test encrypted message.
EOF
test_expect_equal_file EXPECTED OUTPUT
test_done