Skip to content

Instantly share code, notes, and snippets.

@patrickgombert
Created January 12, 2014 18:46
Show Gist options
  • Save patrickgombert/8388673 to your computer and use it in GitHub Desktop.
Save patrickgombert/8388673 to your computer and use it in GitHub Desktop.
ideal namespaces
(defns test.ns.exaple
(refer-clojure ..)
(refer ..)
(import ..)
.. namespace items ...)
; which leads to
(def test-suite
(quote
... test suite definition ...))
(defns clojure.lang.foo-test
(refer-clojure ..)
(refer ...)
(unquote test-suite))
(defns clojure.lang.foo-test-against-clj
(refer ...)
(unquote test-suite))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment