summaryrefslogtreecommitdiff
path: root/tests/fn.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fn.fnl')
-rw-r--r--tests/fn.fnl5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/fn.fnl b/tests/fn.fnl
index 83c45f5..eeee017 100644
--- a/tests/fn.fnl
+++ b/tests/fn.fnl
@@ -1,10 +1,9 @@
(require-macros :fennel-test)
-(require-macros :init-macros)
+(require-macros (doto :cljlib require))
(local (meta? fennel) (pcall require :fennel))
(fn meta [x]
- {:fnl/docstring (fennel.metadata:get x :fnl/docstring)
- :fnl/arglist (fennel.metadata:get x :fnl/arglist)})
+ (fennel.metadata:get x))
(deftest test-fn*
(when meta?