test-check

borkdude 2019-02-25T19:30:23.001Z

@gfredericks responding to this one: https://dev.clojure.org/jira/browse/TCHECK-154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=51397#comment-51397 We don’t have to do anything funny. The only thing we should do to make this “testable” is to remove e.g. this line from the ns form: https://github.com/clojure/test.check/blob/master/src/main/clojure/clojure/test/check/generators.cljc#L16

borkdude 2019-02-25T19:30:58.001500Z

Leaving that line in, will make it untestable in other namespaces as well, since it will be referred to as macro there too then (maybe depending on the order of loading of the namespaces, but that was the behavior I got when testing this in a different namespace with no change to the existing ones).