This works ok at the REPL:

(def ^{:k :v} a 4)
(:k (meta (resolve 'a)))
  ;=> evaluates to :v, ok.

But the same didn't worked inside a clojure.test/deftest:

(deftest mytest
  (def ^{:k :v} b 4)
  (is (= (resolve 'b) nil))             ;; passed, var is resolved ok
  (is (= (:k (meta (resolve 'b))) :v))) ;; fails, metadata is nil

I know deftest wraps his body in a fn, but this works ok:

((fn []
  (def ^{:k :v} c 4)
  (:k (meta (resolve 'c)))
))

Why the deftest case is not working?


Saludos,
Nahuel Greco.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to