aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Dmitry Kurochkin <dmitry.kurochkin@gmail.com>2012-03-10 05:24:50 +0400
committerGravatar David Bremner <bremner@debian.org>2012-03-18 09:14:22 -0300
commit6511b08fb81add535b56a183f278b48a45fc9875 (patch)
treeab26d607b8d392c9c8eed7a56a190931c906a84e /test
parent2f2529563002324337d8d3be1e5335d8a1ca7b47 (diff)
test: remove "Generate some messages" test from raw
Before the change, the first subtest in raw format tests just generated messages and checked that they are added successfully. This is not really a raw format test, it is creating of environment required for other subtests to run. The patch removes the first subtest from raw and replaces it with bare add_message calls, similar to how it is done in other tests. TODO: we should check that test environment was created successfully. Currently, many tests do add_message(), notmuch new and other calls without checking the results. We should come up with a general solution for this, i.e. if any command during test initialization fails, all tests should be skipped with appropriate error message.
Diffstat (limited to 'test')
-rwxr-xr-xtest/raw7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/raw b/test/raw
index 0171e641..de0b8677 100755
--- a/test/raw
+++ b/test/raw
@@ -3,11 +3,8 @@
test_description='notmuch show --format=raw'
. ./test-lib.sh
-test_begin_subtest "Generate some messages"
-generate_message
-generate_message
-output=$(NOTMUCH_NEW)
-test_expect_equal "$output" "Added 2 new messages to the database."
+add_message
+add_message
test_begin_subtest "Attempt to show multiple raw messages"
output=$(notmuch show --format=raw "*" 2>&1)