diff options
author | Pieter Praet <pieter@praet.org> | 2012-02-22 19:43:29 +0100 |
---|---|---|
committer | David Bremner <bremner@debian.org> | 2012-10-20 12:10:24 -0300 |
commit | f5aa5ac6c70aa3b7d38047722b467fbda70210d5 (patch) | |
tree | ff7c7ba9fd9c4c4985ac28b3c213139bb7220239 /test/emacs | |
parent | 3a8712e7db94c5d045e80cc88e7ed38d0eaff6be (diff) |
test: emacs: new tests "notmuch-show: {, un}collapse all messages in thread"
* test/emacs:
- New subtest "notmuch-show: collapse all messages in thread":
`notmuch-show-open-or-close-all' with prefix arg ("C-u M-RET")
collapses all messages in thread.
- New subtest "notmuch-show: uncollapse all messages in thread":
`notmuch-show-open-or-close-all' without prefix arg ("M-RET")
uncollapses all messages in thread.
Diffstat (limited to 'test/emacs')
-rwxr-xr-x | test/emacs | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -618,6 +618,19 @@ test_emacs \ (test-visible-output))' test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-message-with-headers-hidden +test_begin_subtest "notmuch-show: collapse all messages in thread" +test_emacs '(notmuch-show "id:f35dbb950911171435ieecd458o853c873e35f4be95@mail.gmail.com") + (let ((current-prefix-arg t)) + (notmuch-show-open-or-close-all) + (test-visible-output))' +test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-all-messages-collapsed + +test_begin_subtest "notmuch-show: uncollapse all messages in thread" +test_emacs '(notmuch-show "id:f35dbb950911171435ieecd458o853c873e35f4be95@mail.gmail.com") + (notmuch-show-open-or-close-all) + (test-visible-output)' +test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-thread-with-all-messages-uncollapsed + test_begin_subtest "Stashing in notmuch-show" add_message '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' \ '[from]="Some One <someone@somewhere.org>"' \ |