diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/fn.fnl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/fn.fnl b/test/fn.fnl index b9876ca..7ea7c0a 100644 --- a/test/fn.fnl +++ b/test/fn.fnl @@ -40,10 +40,8 @@ (testing fn&-meta (fn& f "docstring" [x] x) (assert-eq (meta f) {:fnl/docstring "docstring" - ;; :fnl/arglist ["x"] ;; TODO: why this works only in REPL? - }) + :fnl/arglist ["x"]}) (fn& f "docstring" [...] [...]) (assert-eq (meta f) {:fnl/docstring "docstring" - ;; :fnl/arglist ["..."] ;; TODO: same as above - }))) + :fnl/arglist ["..."]}))) |