Add test for functions
This commit is contained in:
parent
8ebb353543
commit
6e9ba12895
1 changed files with 4 additions and 0 deletions
4
t/function.t
Normal file
4
t/function.t
Normal 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))
|
Loading…
Reference in a new issue