1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 14:22:25 +03:00

Merge pull request #424 from asarhaddon/typo-test-alias-hacks

tests/lib: fix path in test-alias-hacks, use load-file-once
This commit is contained in:
Joel Martin 2019-07-18 12:50:38 -05:00 committed by GitHub
commit e8e2e95c3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
;; Testing alias-hacks.mal
(load-file "../../lib/alias-hacks.mal")
(load-file "../lib/load-file-once.mal")
(load-file-once "../lib/alias-hacks.mal")
;=>nil
;; Testing let
@ -52,4 +53,3 @@ x
;=>3
((partial str 1 2) 3 4)
;=>"1234"