Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Jan 30, 2025
1 parent 4c56ba8 commit d4873d9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions compiler+runtime/test/jank/form/bool/pass-bool.jank
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
true
false

(assert (= true true,))
(assert (= false false,))

:success
4 changes: 4 additions & 0 deletions compiler+runtime/test/jank/form/keyword/pass-keyword.jank
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(assert (= :a (keyword "a")))
(assert (= :a, (keyword "a")))

:success
4 changes: 4 additions & 0 deletions compiler+runtime/test/jank/form/number/pass-number.jank
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(assert (= 1 1))
(assert (= 1, 1))

:success
4 changes: 4 additions & 0 deletions compiler+runtime/test/jank/form/symbol/pass-symbol.jank
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(assert (= 'a (symbol "a")))
(assert (= 'a, (symbol "a")))

:success

0 comments on commit d4873d9

Please sign in to comment.