branch: elpa/with-simulated-input
commit c0b765c7fbf398ab4a9389b2876fe53bedd3e990
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>
Add debug declarations to macros in test file
---
tests/test-with-simulated-input.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/test-with-simulated-input.el
b/tests/test-with-simulated-input.el
index 6931bc09e1..efeb394a8b 100644
--- a/tests/test-with-simulated-input.el
+++ b/tests/test-with-simulated-input.el
@@ -37,6 +37,7 @@ doesn't seem to properly put BODY in the correct lexical
scope,
but it's good enough for use in this test suite. Lexical scopes
established *inside* BODY work just fine, so just make sure to
put this outside any relevant `let' forms."
+ (declare (debug body))
`(eval
'(progn
,@(cl-loop for expr in body
@@ -58,6 +59,7 @@ put this outside any relevant `let' forms."
BODY is wrapped in `progn-at-runtime', so warnings produced
during macro expansion will be caught as well."
+ (declare (debug body))
`(let ((warnings-displayed-count 0))
(prog1 (progn-at-runtime ,@body)
(expect warnings-displayed-count :to-be-greater-than 0))))