diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-10-24 22:28:20 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-10-24 22:28:20 +0300 |
| commit | 9a9164d8ac1b7d11fbac3715244bbe0573f3c370 (patch) | |
| tree | c1fc57a8d6c09d8ee75c95e9310529feeb0b6245 /macros_test.fnl | |
| parent | 27cf03448e83ef983989ddac7b6a45f25d70ed42 (diff) | |
feature(core functions): Added more core functions
Diffstat (limited to 'macros_test.fnl')
| -rw-r--r-- | macros_test.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros_test.fnl b/macros_test.fnl index 349be1b..7d3818a 100644 --- a/macros_test.fnl +++ b/macros_test.fnl @@ -3,7 +3,7 @@ (local {: eq?} (require :core)) ;; required for testing -(test into-test +(test into (assert-eq (into [] []) []) (assert-eq (into [1 2 3] []) [1 2 3]) (assert-eq (into [1 2 3] [4 5 6]) [1 2 3 4 5 6]) |