Add unit test framework

This commit is contained in:
Henrik Lissner 2016-10-02 16:19:49 +02:00
parent 7836698262
commit ad12b9057b
4 changed files with 20 additions and 1 deletions

5
test/basic-test.el Normal file
View file

@ -0,0 +1,5 @@
;;; basic-test.el
(ert-deftest doom-basic-test ()
(should t))

6
test/test-helper.el Normal file
View file

@ -0,0 +1,6 @@
;;; test-helper.el
(require 'ert)
(provide 'test-helper)
;;; test-helper.el ends here