https://github.com/uk-ar/el-spec.git
git clone 'git://github.com/uk-ar/el-spec.git'
- -
If you use Emacs 23 or lower, you must install ert.
(auto-install-from-url "https://raw.github.com/ohler/ert/c619b56c5bc6a866e33787489545b87d79973205/lisp/emacs-lisp/ert.el")
You can install el-spec from github.
(auto-install-from-url "https://raw.github.com/uk-ar/el-spec/master/el-spec.el")
Or you can install it from marmalade.
M-x package-install el-spec
You can use the “before/after” macro for writing test setup or teardown. Simple example below.
(require 'el-spec)
(describe "description"
(before
(message "before common")
)
(after
(message "after common\n")
)
(it "test 1"
(message "test 1")
)
(it "test 2"
(message "test 2")
)
)
Run the example.
before common
test 1
after common
before common
test 2
after common
To run examples, you can use “M-x el-spec:eval-buffer” or “eval-defun” on describe's S-exp.
You can use “context” keyword for nesting setup and teardown. Simple example is here.
(describe "description"
(before
(message "before common"))
(after
(message "after common\n"))
(context "when 1"
(before
(message "before 1"))
(after
(message "after 1"))
(it "test 1"
(message "test 1")))
(context "when 2"
(before
(message "before 2"))
(after
(message "after 2"))
(it "test 2"
(message "test 2")))
)
Would output to Messages:
before common
before 1
test 1
after 1
after common
before common
before 2
test 2
after 2
after common
You can also use the “around” macro for wrapping examples. The previous example is equivalent to the following example, and they have the same output.
(describe "description"
(around
(message "before common")
(funcall el-spec:example)
(message "after common\n")
)
(context "when 1"
(around
(message "before 1")
(funcall el-spec:example)
(message "after 1")
)
(it "test 1"
(message "test 1")))
(context "when 2"
(around
(message "before 2")
(funcall el-spec:example)
(message "after 2")
)
(it "test 2"
(message "test 2")))
)
It is useful to use the “around” macro with “with-temp-buffer” or “let”.
Here is a step by step tutorial. We will be writing specs for auto insterting parentheses code.
The code we are specing for will - Insert paired parentheses, braces, quotes when user inputs open character. - Only insert closed parentheses if a matching parenethesis does not exist. - Discovers which characters to pair based on the currently active syntax table.
Simple example below.
(with-temp-buffer
(switch-to-buffer (current-buffer))
(c-mode)
(execute-kbd-macro "'")
(should (string= (buffer-string) "''"))
)
(with-temp-buffer
(switch-to-buffer (current-buffer))
(c-mode)
(insert "'")
(execute-kbd-macro "'")
(should (string= (buffer-string) "''"))
)
(with-temp-buffer
(switch-to-buffer (current-buffer))
(emacs-lisp-mode)
(execute-kbd-macro "'")
(should (string= (buffer-string) "'"))
)
You can use the “around” macro for common use of “switch-to-buffer”.
(describe "auto-pair"
(around
(with-temp-buffer
(switch-to-buffer (current-buffer))
(funcall el-spec:example)))
(it ()
(c-mode)
(execute-kbd-macro "'")
(should (string= (buffer-string) "''")))
(it ()
(c-mode)
(insert "'")
(execute-kbd-macro "'")
(should (string= (buffer-string) "''")))
(it ()
(emacs-lisp-mode)
(execute-kbd-macro "'")
(should (string= (buffer-string) "'")))
)
You can omit the example description string for `it' macro calls, as shown above.
Let's group specs by major mode.
(describe "auto-pair"
(around
(with-temp-buffer
(switch-to-buffer (current-buffer))
(funcall el-spec:example)))
(context "in c-mode"
(before
(c-mode))
(it ()
(execute-kbd-macro "'")
(should (string= (buffer-string) "''")))
(it ()
(insert "'")
(execute-kbd-macro "'")
(should (string= (buffer-string) "''"))))
(context "in emacs-lisp-mode"
(before
(emacs-lisp-mode))
(it ()
(execute-kbd-macro "'")
(should (string= (buffer-string) "'"))))
)
You can use variables for the major mode name.
(describe ("auto-pair" :vars (mode))
(around
(with-temp-buffer
(switch-to-buffer (current-buffer))
(funcall mode)
(funcall el-spec:example)))
(context ("in c-mode" :vars ((mode 'c-mode)))
(it ()
(execute-kbd-macro "'")
(should (string= (buffer-string) "''")))
(it ()
(insert "'")
(execute-kbd-macro "'")
(should (string= (buffer-string) "''"))))
(context "in emacs-lisp-mode"
(let ((mode 'emacs-lisp-mode))
(it ()
(execute-kbd-macro "'")
(should (string= (buffer-string) "'")))))
)
Use shared-context to define a block that will be evaluated in the context of example groups either explicitly, using include-context, or implicitly by matching metadata.
For example, if you want to add examples in c-mode and emacs-lisp-mode.
(describe ("auto-pair" :vars (mode))
(around
...)
(context ("in c-mode" :vars ((mode 'c-mode)))
(it ()
...)
(context ("buffer-string before" :vars (string-of-buffer))
(before
(insert string-of-buffer))
(it (:vars ((string-of-buffer "'")))
(execute-kbd-macro "'")
(should (string= (buffer-string) "''")))))
(context "in emacs-lisp-mode"
(let ((mode 'emacs-lisp-mode))
(it ()
...)
(context ("buffer-string before" :vars (string-of-buffer))
(before
(insert string-of-buffer))
(it (:vars ((string-of-buffer "\"")))
(execute-kbd-macro "\"")
(should (string= (buffer-string) "\"\"")))
)))
)
You can use shared-context and include-context for common use of behavior.
(describe ("auto-pair" :vars (mode))
(around
(with-temp-buffer
(switch-to-buffer (current-buffer))
(funcall mode)
(funcall el-spec:example)))
(shared-context ("insert string" :vars (string-of-buffer))
(before
(insert string-of-buffer)))
(context ("in c-mode" :vars ((mode 'c-mode)))
(it ()
(execute-kbd-macro "'")
(should (string= (buffer-string) "''")))
(context "buffer-string before"
(include-context "insert string")
(it (:vars ((string-of-buffer "'")))
(execute-kbd-macro "'")
(should (string= (buffer-string) "''")))))
(context "in emacs-lisp-mode"
(let ((mode 'emacs-lisp-mode))
(it ()
(execute-kbd-macro "'")
(should (string= (buffer-string) "'")))
(context "buffer-string before"
(include-context "insert string")
(it (:vars ((string-of-buffer "\"")))
(execute-kbd-macro "\"")
(should (string= (buffer-string) "\"\"")))
)))
)
Shared example groups let you describe behaviour of types or modules. When declared, a shared group's content is stored. It is only realized in the context of another example group, which provides any context the shared group needs to run.
A shared group is included in another group using the include-examples methods.
You can add examples in c-mode and emacs-lisp-mode. ``` (describe (“auto-pair” :vars (mode)) (around (with-temp-buffer (switch-to-buffer (current-buffer)) (funcall mode) (funcall el-spec:example))) (shared-context (“insert string” :vars (string-of-buffer)) (before (insert string-of-buffer))) (shared-examples “examples for "” (it () (execute-kbd-macro “"”) (should (string= (buffer-string) “""”))))
(context (“in c-mode” :vars ((mode 'c-mode))) (it () (execute-kbd-macro “‘“) (should (string= (buffer-string) ”’‘“))) (include-examples ”examples for "“) (context ”buffer-string before“ (include-context ”insert string“) (it (:vars ((string-of-buffer ”’”))) (execute-kbd-macro “‘“) (should (string= (buffer-string) ”’'”)))))
(context “in emacs-lisp-mode” (let ((mode 'emacs-lisp-mode)) (it () (execute-kbd-macro “‘“) (should (string= (buffer-string) ”’”))) (include-examples “examples for "”) )) ) ```
You can execute a examples around the cursole with “M-x el-spec:eval-and-execute-examples”. You can execute all examples around the cursole with “M-x el-spec:eval-and-execute-all”. You can change default behavior of eval-defun with M-x el-spec:toggle-selection.