namespace com.theoryinpractise.clojure.testrunner symbol = not-a-test meta = symbol = query-namespace meta =
Why is the metadata stripped off the symbols?
--
---
You received this message because you are subscribed to the Google Groups "Clojure Maven Plugin" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure-maven-pl...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I would suspect that (resolve)
would return the var.
I've not tried it yet - but I suspect we're falling into AOT issues here with the code being compiled in test-compile
and being run separately in the test
phase.
I assume meta-data is only retained at run-time and not compiled into the AOT classes anywhere.
Mark