Created
January 12, 2014 18:46
-
-
Save patrickgombert/8388673 to your computer and use it in GitHub Desktop.
ideal namespaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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