diff options
author | Austin Clements <amdragon@MIT.EDU> | 2010-11-17 14:27:59 -0500 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-12-07 16:21:35 -0800 |
commit | a18a15326c9bc392828c91a465b5c514cddfb539 (patch) | |
tree | 67b64be747424814035e69a72176b8cd0ce01e9a /test/emacs | |
parent | 04d633c2851980797d62573626950cefb046d2f3 (diff) |
Make author order tests more strict.
Use varying dates in the test messages to test the order authors are
listed in. Add tests with repeated author names and unusual date
ordering. Most of these are broken at the moment, but will be fixed
shortly.
Edited-by: Carl Worth <cworth@cworth.org>: Also update the expected
results for existing emacs tests that currently codify the incorrect
author ordering, (and similarly note them as broken in the current
test suite).
Diffstat (limited to 'test/emacs')
-rwxr-xr-x | test/emacs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,12 +24,12 @@ test_expect_equal "$output" "$expected" test_begin_subtest "Basic notmuch-search view in emacs" output=$(test_emacs '(notmuch-search "tag:inbox") (notmuch-test-wait) (message (buffer-string))' 2>&1) expected=$(cat $EXPECTED/notmuch-search-tag-inbox) -test_expect_equal "$output" "$expected" +test_expect_equal_failure "$output" "$expected" test_begin_subtest "Navigation of notmuch-hello to search results" output=$(test_emacs '(notmuch-hello) (goto-char (point-min)) (re-search-forward "inbox") (widget-button-press (point)) (notmuch-test-wait) (message (buffer-string))' 2>&1) expected=$(cat $EXPECTED/notmuch-hello-view-inbox) -test_expect_equal "$output" "$expected" +test_expect_equal_failure "$output" "$expected" test_begin_subtest "Basic notmuch-show view in emacs" maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu) |