hamacs/snippets/org-mode/emacs-lisp-defun

9 lines
141 B
Text
Raw Normal View History

# -*- mode: snippet -*-
# name: emacs-lisp-test
# key: #elt
# --
2024-08-12 04:04:53 +00:00
#+BEGIN_SRC emacs-lisp
(ert-deftest $1-test ()
(should (= $0)))
2024-08-12 04:04:53 +00:00
#+END_SRC