You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

8 lines
284 B

(require 'ert)
(ert-deftest dash-byte-compile ()
(let* ((cmd "emacs --quick --batch -f batch-byte-compile dash.el")
(res (shell-command-to-string cmd))
(elc (expand-file-name "dash.elc"))
(exp (format "Wrote %s\n" elc)))
(should (string= res exp))))