Skip to content

Commit a26c256

Browse files
committed
tests: move empty list test from step3 to step2.
1 parent fc0cddf commit a26c256

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/step2_eval.mal

+4
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,7 @@
3535

3636
{:a (+ 7 8)}
3737
;=>{:a 15}
38+
39+
;; Testing empty list
40+
()
41+
;=>()

tests/step3_env.mal

-4
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,3 @@ a
5858
;; Testing vector evaluation
5959
(let* (a 5 b 6) [3 4 a [b 7] 8])
6060
;=>[3 4 5 [6 7] 8]
61-
62-
;; Testing empty list
63-
()
64-
;=>()

0 commit comments

Comments
 (0)