aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2014-12-15 22:47:35 -0200
committerArtur Malabarba <bruce.connor.am@gmail.com>2014-12-15 22:47:35 -0200
commit6e25c3b2e7da42c8e01daf62d79e4b66d618acf6 (patch)
treec6b26299c39e3f8de915d631a479ff477814e9cd /test
parent856ddbd4f80bb4bd1768cd98555efee2184ae6ee (diff)
Hotfix tests
Diffstat (limited to 'test')
-rw-r--r--test/tests.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/tests.el b/test/tests.el
index 15c8e8b..8969c37 100644
--- a/test/tests.el
+++ b/test/tests.el
@@ -121,14 +121,16 @@
(ert-deftest macro-test--sx-assoc-let ()
"Tests macro expansion for `sx-assoc-let'"
(should
- (equal '(progn (sx--ensure-site data)
+ (equal '(progn (require 'let-alist)
+ (sx--ensure-site data)
(let ((.test (cdr (assq 'test data))))
.test))
(macroexpand-all
'(sx-assoc-let data
.test))))
(should
- (equal '(progn (sx--ensure-site data)
+ (equal '(progn (require 'let-alist)
+ (sx--ensure-site data)
(let ((.test-one (cdr (assq 'test-one data)))
(.test-two (cdr (assq 'test-two data))))
(cons .test-one .test-two)))