From: Dmitry Kurochkin Date: Sun, 18 Dec 2011 00:21:19 +0000 (+0400) Subject: test: add test for `notmuch-hello-mode-hook' X-Git-Tag: 0.11_rc1~19 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=785028dc2e6bc165456d3c91c1ce3693e6a4cf05 test: add test for `notmuch-hello-mode-hook' Test that `notmuch-hello-mode-hook' is called once when `notmuch-hello' function is called. --- diff --git a/test/emacs b/test/emacs index 6e922deb..a864ffa7 100755 --- a/test/emacs +++ b/test/emacs @@ -476,4 +476,13 @@ test_emacs "(let ((notmuch-command \"$notmuch_counter_command\")) (notmuch-show \"id:$id\"))" test_expect_equal $(notmuch_counter_value) 1 +test_begin_subtest "notmuch-hello-mode hook is called" +counter=$(test_emacs \ + '(let ((notmuch-hello-mode-hook-counter 0)) + (kill-buffer "*notmuch-hello*") + (notmuch-hello) + notmuch-hello-mode-hook-counter)' +) +test_expect_equal "$counter" 1 + test_done