8 lines
265 B
EmacsLisp
8 lines
265 B
EmacsLisp
|
(ert-deftest oni-bats-test-auto-insert ()
|
|||
|
"Test that ‘auto-insert’ inserts the proper interpreter."
|
|||
|
(with-temp-buffer
|
|||
|
(bats-mode)
|
|||
|
(let ((auto-insert-query nil))
|
|||
|
(auto-insert))
|
|||
|
(should (string= "#!/usr/bin/env bats\n\n" (buffer-string)))))
|