branch: externals/dape
commit 26fb777f078bf04d31f0b618e14c6049edb333b9
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>
Fix incorrect doc string for dape-test--with-files
---
dape-tests.el | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/dape-tests.el b/dape-tests.el
index 73e7be83bc..7570332b2c 100644
--- a/dape-tests.el
+++ b/dape-tests.el
@@ -54,15 +54,9 @@ failed."
ret))))
(defmacro dape-test--with-files (buffer-fixtures &rest body)
- "Setup BUFFER-FIXTURES call body with bindings and clean up.
-FIXTURE is an alist of the form
-(BUFFER-BINDING (FILE-NAME . CONTENT-LIST).
-
-Inserts breakpoints based on string properties in elements in
-CONTENT-LIST.
-- bp: inserts breakpoint
-- condition: inserts condition breakpoint
-- log: inserts log breakpoint"
+ "Setup BUFFER-FIXTURES and call BODY with bindings and clean up.
+FIXTURE is an alist with form (BUFFER-BINDING (FILE-NAME . CONTENT-LIST).
+CONTENT-LIST is an list of strings which are joined with newline to create
file."
(declare (indent 1) (debug t))
`(dape-test--call-with-files ',(mapcar 'cdr buffer-fixtures)
(lambda ,(mapcar 'car buffer-fixtures)