mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: add test for hiding/showing signature in notmuch-show view
This commit is contained in:
parent
d32b8b1715
commit
31b7c04ae1
1 changed files with 11 additions and 0 deletions
11
test/emacs
11
test/emacs
|
@ -124,4 +124,15 @@ first_line=$(echo "$expected" | head -n1)
|
|||
output=$(test_emacs '(notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com") (notmuch-show-view-raw-message) (message (buffer-string))' 2>&1 | sed -ne "/$first_line/,\$ p")
|
||||
test_expect_equal "$output" "$expected"
|
||||
|
||||
test_begin_subtest "Hiding/showing signature in notmuch-show view"
|
||||
maildir_storage_thread=$(notmuch search --output=threads id:20091117190054.GU3165@dottiness.seas.harvard.edu)
|
||||
output=$(test_emacs "(notmuch-show \"$maildir_storage_thread\")
|
||||
(search-forward \"Click/Enter to show.\")
|
||||
(button-activate (button-at (point)))
|
||||
(search-backward \"Click/Enter to hide.\")
|
||||
(button-activate (button-at (point)))
|
||||
(princ (buffer-string))")
|
||||
expected=$(cat $EXPECTED/notmuch-show-thread-maildir-storage)
|
||||
test_expect_equal "$output" "$expected"
|
||||
|
||||
test_done
|
||||
|
|
Loading…
Reference in a new issue