From 6268cc26b3cfa30c4b39dc1edaa3aedb98422184 Mon Sep 17 00:00:00 2001 From: Joao Tavora Date: Mon, 14 Oct 2013 10:25:38 +0100 Subject: [PATCH] add: test for issue #404 --- yasnippet-tests.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/yasnippet-tests.el b/yasnippet-tests.el index 7349d6f14..c5d87387a 100644 --- a/yasnippet-tests.el +++ b/yasnippet-tests.el @@ -204,6 +204,15 @@ (ert-simulate-command `(yas-mock-insert "bbb")) (should (string= (yas--buffer-contents) "if condition\naaa\nelse\nbbb\nend"))))) +(ert-deftest example-for-issue-404 () + (with-temp-buffer + (c++-mode) + (yas-minor-mode 1) + (insert "#include \n") + (let ((snippet "main")) + (yas-expand-snippet snippet) + (should (string= (yas--buffer-contents) "#include \nmain"))))) + (ert-deftest another-example-for-issue-271 () ;; expect this to fail in batch mode since `region-active-p' doesn't ;; used by `yas-expand-snippet' doesn't make sense in that context. -- 2.39.2