projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d767418
)
; * test/lisp/emacs-lisp/generator-tests.el: Style fixes.
author
Philipp Stephani
<phst@google.com>
Fri, 31 Jul 2020 21:50:04 +0000
(23:50 +0200)
committer
Philipp Stephani
<phst@google.com>
Fri, 31 Jul 2020 21:50:04 +0000
(23:50 +0200)
test/lisp/emacs-lisp/generator-tests.el
patch
|
blob
|
history
diff --git
a/test/lisp/emacs-lisp/generator-tests.el
b/test/lisp/emacs-lisp/generator-tests.el
index 0d325f1485a61773c0f4334ec267514dbe4e6968..e0d9167118ec208db1637688e7caf55cacd7eaa8 100644
(file)
--- a/
test/lisp/emacs-lisp/generator-tests.el
+++ b/
test/lisp/emacs-lisp/generator-tests.el
@@
-22,6
+22,10
@@
;;; Commentary:
+;; Unit tests for generator.el.
+
+;;; Code:
+
(require 'generator)
(require 'ert)
(require 'cl-lib)
@@
-38,8
+42,7
@@
`cps-testcase' defines an ERT testcase called NAME that evaluates
BODY twice: once using ordinary `eval' and once using
lambda-generators. The test ensures that the two forms produce
-identical output.
-"
+identical output."
`(progn
(ert-deftest ,name ()
(should
@@
-302,3
+305,5
@@
identical output.
(lambda (it) (- it))
(1+ it)))))))
-2)))
+
+;;; generator-tests.el ends here