Add test for functions

This commit is contained in:
madmaurice 2021-04-02 17:11:34 +02:00
parent 8ebb353543
commit 6e9ba12895

4
t/function.t Normal file
View file

@ -0,0 +1,4 @@
(defun inc (a) (+ a 1))
(expect "inc 5 == 6" (eq (inc 5) 6))
(expect "inc 6 == 7" (eq (inc 6) 7))