]> code.delx.au - gnu-emacs-elpa/blob - yasnippet-tests.el
Fix: Closes #330
[gnu-emacs-elpa] / yasnippet-tests.el
1 ;;; yasnippet-tests.el --- some yasnippet tests
2
3 ;; Copyright (C) 2012 João Távora
4
5 ;; Author: João Távora <joaot@siscog.pt>
6 ;; Keywords: emulations, convenience
7
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21 ;;; Commentary:
22
23 ;; Test basic snippet mechanics and the loading system
24
25 ;;; Code:
26
27 (require 'yasnippet)
28 (require 'ert)
29 (require 'ert-x)
30
31 \f
32 ;;; Snippet mechanics
33
34 (defun yas--buffer-contents ()
35 (buffer-substring-no-properties (point-min) (point-max)))
36
37 (ert-deftest field-navigation ()
38 (with-temp-buffer
39 (yas-minor-mode 1)
40 (yas-expand-snippet "${1:brother} from another ${2:mother}")
41 (should (string= (yas--buffer-contents)
42 "brother from another mother"))
43
44 (should (looking-at "brother"))
45 (ert-simulate-command '(yas-next-field-or-maybe-expand))
46 (should (looking-at "mother"))
47 (ert-simulate-command '(yas-prev-field))
48 (should (looking-at "brother"))))
49
50 (ert-deftest simple-mirror ()
51 (with-temp-buffer
52 (yas-minor-mode 1)
53 (yas-expand-snippet "${1:brother} from another $1")
54 (should (string= (yas--buffer-contents)
55 "brother from another brother"))
56 (ert-simulate-command `(yas-mock-insert "bla"))
57 (should (string= (yas--buffer-contents)
58 "bla from another bla"))))
59
60 (ert-deftest mirror-with-transformation ()
61 (with-temp-buffer
62 (yas-minor-mode 1)
63 (yas-expand-snippet "${1:brother} from another ${1:$(upcase yas-text)}")
64 (should (string= (yas--buffer-contents)
65 "brother from another BROTHER"))
66 (ert-simulate-command `(yas-mock-insert "bla"))
67 (should (string= (yas--buffer-contents)
68 "bla from another BLA"))))
69
70 (ert-deftest primary-field-transformation ()
71 (with-temp-buffer
72 (yas-minor-mode 1)
73 (let ((snippet "${1:$$(upcase yas/text)}${1:$(concat \"bar\" yas/text)}"))
74 (yas-expand-snippet snippet)
75 (should (string= (yas--buffer-contents) "bar"))
76 (ert-simulate-command `(yas-mock-insert "foo"))
77 (should (string= (yas--buffer-contents) "FOObarFOO")))))
78
79 (ert-deftest nested-placeholders-kill-superfield ()
80 (with-temp-buffer
81 (yas-minor-mode 1)
82 (yas-expand-snippet "brother from ${2:another ${3:mother}}!")
83 (should (string= (yas--buffer-contents)
84 "brother from another mother!"))
85 (ert-simulate-command `(yas-mock-insert "bla"))
86 (should (string= (yas--buffer-contents)
87 "brother from bla!"))))
88
89 (ert-deftest nested-placeholders-use-subfield ()
90 (with-temp-buffer
91 (yas-minor-mode 1)
92 (yas-expand-snippet "brother from ${2:another ${3:mother}}!")
93 (ert-simulate-command '(yas-next-field-or-maybe-expand))
94 (ert-simulate-command `(yas-mock-insert "bla"))
95 (should (string= (yas--buffer-contents)
96 "brother from another bla!"))))
97
98 (ert-deftest mirrors-adjacent-to-fields-with-nested-mirrors ()
99 (with-temp-buffer)
100 (yas-minor-mode 1)
101 (yas-expand-snippet "<%= f.submit \"${1:Submit}\"${2:$(and (yas-text) \", :disable_with => '\")}${2:$1ing...}${2:$(and (yas-text) \"'\")} %>")
102 (should (string= (yas--buffer-contents)
103 "<%= f.submit \"Submit\", :disable_with => 'Submiting...' %>"))
104 (ert-simulate-command `(yas-mock-insert "Send"))
105 (should (string= (yas--buffer-contents)
106 "<%= f.submit \"Send\", :disable_with => 'Sending...' %>")))
107
108 ;; (ert-deftest in-snippet-undo ()
109 ;; (with-temp-buffer
110 ;; (yas-minor-mode 1)
111 ;; (yas-expand-snippet "brother from ${2:another ${3:mother}}!")
112 ;; (ert-simulate-command '(yas-next-field-or-maybe-expand))
113 ;; (ert-simulate-command `(yas-mock-insert "bla"))
114 ;; (ert-simulate-command '(undo))
115 ;; (should (string= (yas--buffer-contents)
116 ;; "brother from another mother!"))))
117
118 \f
119 ;;; Snippet expansion and character escaping
120 ;;; Thanks to @zw963 (Billy) for the testing
121 ;;;
122 (ert-deftest escape-dollar ()
123 (with-temp-buffer
124 (yas-minor-mode 1)
125 (yas-expand-snippet "bla\\${1:bla}ble")
126 (should (string= (yas--buffer-contents) "bla${1:bla}ble"))))
127
128 (ert-deftest escape-closing-brace ()
129 (with-temp-buffer
130 (yas-minor-mode 1)
131 (yas-expand-snippet "bla${1:bla\\}}ble")
132 (should (string= (yas--buffer-contents) "blabla}ble"))
133 (should (string= (yas-field-value 1) "bla}"))))
134
135 (ert-deftest escape-backslashes ()
136 (with-temp-buffer
137 (yas-minor-mode 1)
138 (yas-expand-snippet "bla\\ble")
139 (should (string= (yas--buffer-contents) "bla\\ble"))))
140
141 (ert-deftest escape-backquotes ()
142 (with-temp-buffer
143 (yas-minor-mode 1)
144 (yas-expand-snippet "bla`(upcase \"foo\\`bar\")`ble")
145 (should (string= (yas--buffer-contents) "blaFOO`BARble"))))
146
147 (ert-deftest escape-some-elisp-with-strings ()
148 "elisp with strings and unbalance parens inside it"
149 (with-temp-buffer
150 (yas-minor-mode 1)
151 ;; The rules here is: to output a literal `"' you need to escape
152 ;; it with one backslash. You don't need to escape them in
153 ;; embedded elisp.
154 (yas-expand-snippet "soon \\\"`(concat (upcase \"(my arms\")\"\\\" were all around her\")`")
155 (should (string= (yas--buffer-contents) "soon \"(MY ARMS\" were all around her"))))
156
157 (ert-deftest escape-some-elisp-with-backslashes ()
158 (with-temp-buffer
159 (yas-minor-mode 1)
160 ;; And the rule here is: to output a literal `\' inside a string
161 ;; inside embedded elisp you need a total of six `\'
162 (yas-expand-snippet "bla`(upcase \"hey\\\\\\yo\")`ble")
163 (should (string= (yas--buffer-contents) "blaHEY\\YOble"))))
164
165 (ert-deftest be-careful-when-escaping-in-yas-selected-text ()
166 (with-temp-buffer
167 (yas-minor-mode 1)
168 (let ((yas/selected-text "He\\\\o world!"))
169 (yas-expand-snippet "Look ma! `(yas/selected-text)`")
170 (should (string= (yas--buffer-contents) "Look ma! He\\\\o world!")))
171 (yas-exit-all-snippets)
172 (erase-buffer)
173 (let ((yas/selected-text "He\"o world!"))
174 (yas-expand-snippet "Look ma! `(yas/selected-text)`")
175 (should (string= (yas--buffer-contents) "Look ma! He\"o world!")))
176 (yas-exit-all-snippets)
177 (erase-buffer)
178 (let ((yas/selected-text "He\"\)\\o world!"))
179 (yas-expand-snippet "Look ma! `(yas/selected-text)`")
180 (should (string= (yas--buffer-contents) "Look ma! He\"\)\\o world!")))
181 (yas-exit-all-snippets)
182 (erase-buffer)))
183
184 (ert-deftest be-careful-when-escaping-in-yas-selected-text-2 ()
185 (with-temp-buffer
186 (let ((yas/selected-text "He)}o world!"))
187 (yas-expand-snippet "Look ma! ${1:`(yas/selected-text)`} OK?")
188 (should (string= (yas--buffer-contents) "Look ma! He)}o world! OK?")))))
189
190 (ert-deftest example-for-issue-271 ()
191 (with-temp-buffer
192 (yas-minor-mode 1)
193 (let ((yas-selected-text "aaa")
194 (snippet "if ${1:condition}\n`yas/selected-text`\nelse\n$3\nend"))
195 (yas-expand-snippet snippet)
196 (yas-next-field)
197 (ert-simulate-command `(yas-mock-insert "bbb"))
198 (should (string= (yas--buffer-contents) "if condition\naaa\nelse\nbbb\nend")))))
199
200 (ert-deftest another-example-for-issue-271 ()
201 ;; expect this to fail in batch mode since `region-active-p' doesn't
202 ;; used by `yas-expand-snippet' doesn't make sense in that context.
203 ;;
204 :expected-result (if noninteractive
205 :failed
206 :passed)
207 (with-temp-buffer
208 (yas-minor-mode 1)
209 (let ((snippet "\\${${1:1}:`yas/selected-text`}"))
210 (insert "aaabbbccc")
211 (set-mark 4)
212 (goto-char 7)
213 (yas-expand-snippet snippet)
214 (should (string= (yas--buffer-contents) "aaa${1:bbb}ccc")))))
215
216 (ert-deftest string-match-with-subregexp-in-embedded-elisp ()
217 (with-temp-buffer
218 (yas-minor-mode 1)
219 ;; the rule here is: To use regexps in embedded `(elisp)` expressions, write
220 ;; it like you would normal elisp, i.e. no need to escape the backslashes.
221 (let ((snippet "`(if (string-match \"foo\\\\(ba+r\\\\)foo\" \"foobaaaaaaaaaarfoo\")
222 \"ok\"
223 \"fail\")`"))
224 (yas-expand-snippet snippet))
225 (should (string= (yas--buffer-contents) "ok"))))
226
227 (ert-deftest string-match-with-subregexp-in-mirror-transformations ()
228 (with-temp-buffer
229 (yas-minor-mode 1)
230 ;; the rule here is: To use regexps in embedded `(elisp)` expressions,
231 ;; escape backslashes once, i.e. to use \\( \\) constructs, write \\\\( \\\\).
232 (let ((snippet "$1${1:$(if (string-match \"foo\\\\\\\\(ba+r\\\\\\\\)baz\" yas/text)
233 \"ok\"
234 \"fail\")}"))
235 (yas-expand-snippet snippet)
236 (should (string= (yas--buffer-contents) "fail"))
237 (ert-simulate-command `(yas-mock-insert "foobaaar"))
238 (should (string= (yas--buffer-contents) "foobaaarfail"))
239 (ert-simulate-command `(yas-mock-insert "baz"))
240 (should (string= (yas--buffer-contents) "foobaaarbazok")))))
241
242 \f
243 ;;; Misc tests
244 ;;;
245 (ert-deftest protection-overlay-no-cheating ()
246 "Protection overlays at the very end of the buffer are dealt
247 with by cheatingly inserting a newline!
248
249 TODO: correct this bug!"
250 :expected-result :failed
251 (with-temp-buffer
252 (yas-minor-mode 1)
253 (yas-expand-snippet "${2:brother} from another ${1:mother}")
254 (should (string= (yas--buffer-contents)
255 "brother from another mother") ;; no newline should be here!
256 )))
257 \f
258 ;;; Loading
259 ;;;
260 (defmacro yas-with-overriden-buffer-list (&rest body)
261 (let ((saved-sym (gensym)))
262 `(let ((,saved-sym (symbol-function 'buffer-list)))
263 (flet ((buffer-list ()
264 (remove-if #'(lambda (buf)
265 (with-current-buffer buf
266 (eq major-mode 'lisp-interaction-mode)))
267 (funcall ,saved-sym))))
268 ,@body))))
269
270 (defmacro yas-with-some-interesting-snippet-dirs (&rest body)
271 `(yas-saving-variables
272 (yas-with-overriden-buffer-list
273 (yas-with-snippet-dirs
274 '((".emacs.d/snippets"
275 ("c-mode"
276 (".yas-parents" . "cc-mode")
277 ("printf" . "printf($1);")) ;; notice the overriding for issue #281
278 ("emacs-lisp-mode" ("ert-deftest" . "(ert-deftest ${1:name} () $0)"))
279 ("lisp-interaction-mode" (".yas-parents" . "emacs-lisp-mode")))
280 ("library/snippets"
281 ("c-mode"
282 (".yas-parents" . "c++-mode")
283 ("printf" . "printf"))
284 ("cc-mode" ("def" . "# define"))
285 ("emacs-lisp-mode" ("dolist" . "(dolist)"))
286 ("lisp-interaction-mode" ("sc" . "brother from another mother"))))
287 ,@body))))
288
289 (ert-deftest basic-jit-loading ()
290 "Test basic loading and expansion of snippets"
291 (yas-with-some-interesting-snippet-dirs
292 (yas-reload-all)
293 (yas--basic-jit-loading-1)))
294
295 (ert-deftest basic-jit-loading-with-compiled-snippets ()
296 "Test basic loading and expansion of snippets"
297 (yas-with-some-interesting-snippet-dirs
298 (yas-reload-all)
299 (yas-recompile-all)
300 (yas--with-temporary-redefinitions ((yas--load-directory-2
301 (&rest dummies)
302 (declare (ignore dummies))
303 (ert-fail "yas--load-directory-2 shouldn't be called when snippets have been compiled")))
304 (yas-reload-all)
305 (yas--basic-jit-loading-1))))
306
307 (defun yas--basic-jit-loading-1 (&optional compile)
308 (with-temp-buffer
309 (should (= 4 (hash-table-count yas--scheduled-jit-loads)))
310 (should (= 0 (hash-table-count yas--tables)))
311 (lisp-interaction-mode)
312 (yas-minor-mode 1)
313 (should (= 2 (hash-table-count yas--scheduled-jit-loads)))
314 (should (= 2 (hash-table-count yas--tables)))
315 (should (= 1 (hash-table-count (yas--table-uuidhash (gethash 'lisp-interaction-mode yas--tables)))))
316 (should (= 2 (hash-table-count (yas--table-uuidhash (gethash 'emacs-lisp-mode yas--tables)))))
317 (yas-should-expand '(("sc" . "brother from another mother")
318 ("dolist" . "(dolist)")
319 ("ert-deftest" . "(ert-deftest name () )")))
320 (c-mode)
321 (yas-minor-mode 1)
322 (should (= 0 (hash-table-count yas--scheduled-jit-loads)))
323 (should (= 4 (hash-table-count yas--tables)))
324 (should (= 1 (hash-table-count (yas--table-uuidhash (gethash 'c-mode yas--tables)))))
325 (should (= 1 (hash-table-count (yas--table-uuidhash (gethash 'cc-mode yas--tables)))))
326 (yas-should-expand '(("printf" . "printf();")
327 ("def" . "# define")))
328 (yas-should-not-expand '("sc" "dolist" "ert-deftest"))))
329
330 \f
331 ;;; Menu
332 ;;;
333 (defmacro yas-with-even-more-interesting-snippet-dirs (&rest body)
334 `(yas-saving-variables
335 (yas-with-snippet-dirs
336 `((".emacs.d/snippets"
337 ("c-mode"
338 (".yas-make-groups" . "")
339 ("printf" . "printf($1);")
340 ("foo-group-a"
341 ("fnprintf" . "fprintf($1);")
342 ("snprintf" . "snprintf($1);"))
343 ("foo-group-b"
344 ("strcmp" . "strecmp($1);")
345 ("strcasecmp" . "strcasecmp($1);")))
346 ("lisp-interaction-mode"
347 ("ert-deftest" . "# group: barbar\n# --\n(ert-deftest ${1:name} () $0)"))
348 ("fancy-mode"
349 ("a-guy" . "# uuid: 999\n# --\nyo!")
350 ("a-sir" . "# uuid: 12345\n# --\nindeed!")
351 ("a-lady" . "# uuid: 54321\n# --\noh-la-la!")
352 ("a-beggar" . "# uuid: 0101\n# --\narrrgh!")
353 ("an-outcast" . "# uuid: 666\n# --\narrrgh!")
354 (".yas-setup.el" . , (pp-to-string
355 '(yas-define-menu 'fancy-mode
356 '((yas-ignore-item "0101")
357 (yas-item "999")
358 (yas-submenu "sirs"
359 ((yas-item "12345")))
360 (yas-submenu "ladies"
361 ((yas-item "54321"))))
362 '("666")))))))
363 ,@body)))
364
365 (ert-deftest test-yas-define-menu ()
366 (let ((yas-use-menu t))
367 (yas-with-even-more-interesting-snippet-dirs
368 (yas-reload-all 'no-jit)
369 (let ((menu (cdr (gethash 'fancy-mode yas--menu-table))))
370 (should (eql 4 (length menu)))
371 (dolist (item '("a-guy" "a-beggar"))
372 (should (find item menu :key #'third :test #'string=)))
373 (should-not (find "an-outcast" menu :key #'third :test #'string=))
374 (dolist (submenu '("sirs" "ladies"))
375 (should (keymapp
376 (fourth
377 (find submenu menu :key #'third :test #'string=)))))
378 ))))
379
380 (ert-deftest test-group-menus ()
381 "Test group-based menus using .yas-make-groups and the group directive"
382 (let ((yas-use-menu t))
383 (yas-with-even-more-interesting-snippet-dirs
384 (yas-reload-all 'no-jit)
385 ;; first the subdir-based groups
386 ;;
387 (let ((menu (cdr (gethash 'c-mode yas--menu-table))))
388 (should (eql 3 (length menu)))
389 (dolist (item '("printf" "foo-group-a" "foo-group-b"))
390 (should (find item menu :key #'third :test #'string=)))
391 (dolist (submenu '("foo-group-a" "foo-group-b"))
392 (should (keymapp
393 (fourth
394 (find submenu menu :key #'third :test #'string=))))))
395 ;; now group directives
396 ;;
397 (let ((menu (cdr (gethash 'lisp-interaction-mode yas--menu-table))))
398 (should (eql 1 (length menu)))
399 (should (find "barbar" menu :key #'third :test #'string=))
400 (should (keymapp
401 (fourth
402 (find "barbar" menu :key #'third :test #'string=))))))))
403
404 (ert-deftest test-group-menus-twisted ()
405 "Same as similarly named test, but be mean.
406
407 TODO: be meaner"
408 (let ((yas-use-menu t))
409 (yas-with-even-more-interesting-snippet-dirs
410 ;; add a group directive conflicting with the subdir and watch
411 ;; behaviour
412 (with-temp-buffer
413 (insert "# group: foo-group-c\n# --\nstrecmp($1)")
414 (write-region nil nil (concat (first (yas-snippet-dirs))
415 "/c-mode/foo-group-b/strcmp")))
416 (yas-reload-all 'no-jit)
417 (let ((menu (cdr (gethash 'c-mode yas--menu-table))))
418 (should (eql 4 (length menu)))
419 (dolist (item '("printf" "foo-group-a" "foo-group-b" "foo-group-c"))
420 (should (find item menu :key #'third :test #'string=)))
421 (dolist (submenu '("foo-group-a" "foo-group-b" "foo-group-c"))
422 (should (keymapp
423 (fourth
424 (find submenu menu :key #'third :test #'string=))))))
425 ;; delete the .yas-make-groups file and watch behaviour
426 ;;
427 (delete-file (concat (first (yas-snippet-dirs))
428 "/c-mode/.yas-make-groups"))
429 (yas-reload-all 'no-jit)
430 (let ((menu (cdr (gethash 'c-mode yas--menu-table))))
431 (should (eql 5 (length menu))))
432 ;; Change a group directive and reload
433 ;;
434 (let ((menu (cdr (gethash 'lisp-interaction-mode yas--menu-table))))
435 (should (find "barbar" menu :key #'third :test #'string=)))
436
437 (with-temp-buffer
438 (insert "# group: foofoo\n# --\n(ert-deftest ${1:name} () $0)")
439 (write-region nil nil (concat (first (yas-snippet-dirs))
440 "/lisp-interaction-mode/ert-deftest")))
441 (yas-reload-all 'no-jit)
442 (let ((menu (cdr (gethash 'lisp-interaction-mode yas--menu-table))))
443 (should (eql 1 (length menu)))
444 (should (find "foofoo" menu :key #'third :test #'string=))
445 (should (keymapp
446 (fourth
447 (find "foofoo" menu :key #'third :test #'string=))))))))
448
449 \f
450 ;;; The infamous and problematic tab keybinding
451 ;;;
452 (ert-deftest test-yas-tab-binding ()
453 (with-temp-buffer
454 (yas-minor-mode -1)
455 (should (not (eq (key-binding (yas--read-keybinding "<tab>")) 'yas-expand)))
456 (yas-minor-mode 1)
457 (should (eq (key-binding (yas--read-keybinding "<tab>")) 'yas-expand))
458 (yas-expand-snippet "$1 $2 $3")
459 (should (eq (key-binding [(tab)]) 'yas-next-field-or-maybe-expand))
460 (should (eq (key-binding (kbd "TAB")) 'yas-next-field-or-maybe-expand))
461 (should (eq (key-binding [(shift tab)]) 'yas-prev-field))
462 (should (eq (key-binding [backtab]) 'yas-prev-field))))
463
464 (ert-deftest test-yas-in-org ()
465 (with-temp-buffer
466 (org-mode)
467 (yas-minor-mode 1)
468 (should (eq (key-binding [(tab)]) 'yas-expand))
469 (should (eq (key-binding (kbd "TAB")) 'yas-expand))))
470
471 \f
472 ;;; Helpers
473 ;;;
474 (defun yas/ert ()
475 (interactive)
476 (with-temp-buffer
477 (flet ((message (&rest args)
478 (declare (ignore args))
479 nil))
480 (ert t (buffer-name (current-buffer)))
481 (princ (buffer-string)))))
482
483
484 (defun yas-should-expand (keys-and-expansions)
485 (dolist (key-and-expansion keys-and-expansions)
486 (yas-exit-all-snippets)
487 (erase-buffer)
488 (insert (car key-and-expansion))
489 (let ((yas-fallback-behavior nil))
490 (ert-simulate-command '(yas-expand)))
491 (should (string= (yas--buffer-contents) (cdr key-and-expansion))))
492 (yas-exit-all-snippets))
493
494 (defun yas-should-not-expand (keys)
495 (dolist (key keys)
496 (yas-exit-all-snippets)
497 (erase-buffer)
498 (insert key)
499 (let ((yas-fallback-behavior nil))
500 (ert-simulate-command '(yas-expand)))
501 (should (string= (yas--buffer-contents) key))))
502
503 (defun yas-mock-insert (string)
504 (interactive)
505 (do ((i 0 (1+ i)))
506 ((= i (length string)))
507 (insert (aref string i))))
508
509 (defun yas-make-file-or-dirs (ass)
510 (let ((file-or-dir-name (car ass))
511 (content (cdr ass)))
512 (cond ((listp content)
513 (make-directory file-or-dir-name 'parents)
514 (let ((default-directory (concat default-directory "/" file-or-dir-name)))
515 (mapc #'yas-make-file-or-dirs content)))
516 ((stringp content)
517 (with-temp-buffer
518 (insert content)
519 (write-region nil nil file-or-dir-name nil 'nomessage)))
520 (t
521 (message "[yas] oops don't know this content")))))
522
523
524 (defun yas-variables ()
525 (let ((syms))
526 (mapatoms #'(lambda (sym)
527 (if (and (string-match "^yas-[^/]" (symbol-name sym))
528 (boundp sym))
529 (push sym syms))))
530 syms))
531
532 (defun yas-call-with-saving-variables (fn)
533 (let* ((vars (yas-variables))
534 (saved-values (mapcar #'symbol-value vars)))
535 (unwind-protect
536 (funcall fn)
537 (loop for var in vars
538 for saved in saved-values
539 do (set var saved)))))
540
541 (defmacro yas-saving-variables (&rest body)
542 `(yas-call-with-saving-variables #'(lambda () ,@body)))
543
544
545 (defun yas-call-with-snippet-dirs (dirs fn)
546 (let* ((default-directory (make-temp-file "yasnippet-fixture" t))
547 (yas-snippet-dirs (mapcar #'car dirs)))
548 (with-temp-message ""
549 (unwind-protect
550 (progn
551 (mapc #'yas-make-file-or-dirs dirs)
552 (funcall fn))
553 (when (>= emacs-major-version 24)
554 (delete-directory default-directory 'recursive))))))
555
556 (defmacro yas-with-snippet-dirs (dirs &rest body)
557 `(yas-call-with-snippet-dirs ,dirs
558 #'(lambda ()
559 ,@body)))
560
561 ;;; Older emacsen
562 ;;;
563 (unless (fboundp 'special-mode)
564 (define-minor-mode special-mode "Just a placeholder for something isn't in emacs 22"))
565
566 ;;; btw to test this in emacs22 mac osx:
567 ;;; curl -L -O https://github.com/mirrors/emacs/raw/master/lisp/emacs-lisp/ert.el
568 ;;; curl -L -O https://github.com/mirrors/emacs/raw/master/lisp/emacs-lisp/ert-x.el
569 ;;; /usr/bin/emacs -nw -Q -L . -l yasnippet-tests.el --batch -e ert
570
571
572 (provide 'yasnippet-tests)
573 ;;; yasnippet-tests.el ends here
574 ;; Local Variables:
575 ;; lexical-binding: t
576 ;; End: