Conform unit test macros to naming convention

This commit is contained in:
Henrik Lissner 2018-03-27 02:52:30 -04:00
parent 2364e97285
commit 1f9576a59a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 14 additions and 14 deletions

View file

@ -9,7 +9,7 @@ affects your Emacs packages)."
(other ,dest))
(with-temp-file it
(insert "Hello world"))
(with-minor-mode!! projectile-mode
(with-minor-mode! projectile-mode
(unwind-protect
(progn
(should (file-exists-p it))

View file

@ -4,7 +4,7 @@
(require! :lang org)
(defmacro should-org-buffer!! (source expected &rest body)
`(should-buffer!! ,source ,expected
`(should-buffer! ,source ,expected
(org-mode)
,@body))