aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/emacs
diff options
context:
space:
mode:
authorGravatar Pieter Praet <pieter@praet.org>2012-02-19 21:56:30 +0100
committerGravatar David Bremner <bremner@debian.org>2012-10-17 21:35:38 -0300
commit345faab1f5c73f5412677d4a0aaa383a8462b2e5 (patch)
treeef134488af1a6868aad9c8d2feaa7387628a195d /test/emacs
parent5ea1dbe977790294d73d3522228ce1ede58b8404 (diff)
test: emacs: toggle thread content indentation in `notmuch-show'
See commit c205e8ff.
Diffstat (limited to 'test/emacs')
-rwxr-xr-xtest/emacs9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/emacs b/test/emacs
index c4ead514..e9d82399 100755
--- a/test/emacs
+++ b/test/emacs
@@ -840,5 +840,14 @@ test_emacs '(let ((notmuch-show-only-matching-messages nil))
(test-visible-output))'
test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-elide-non-matching-messages-on
+test_begin_subtest "notmuch-show: disable indentation of thread content (w/ notmuch-show-toggle-thread-indentation)"
+test_emacs '(notmuch-search "from:lars@seas.harvard.edu and subject:\"Maildir storage\"")
+ (notmuch-test-wait)
+ (notmuch-search-show-thread)
+ (notmuch-test-wait)
+ (notmuch-show-toggle-thread-indentation)
+ (test-visible-output)'
+test_expect_equal_file OUTPUT $EXPECTED/notmuch-show-indent-thread-content-off
+
test_done