(facts ...) form in Midje, let's us group a bunch of (fact ..) forms and also have more (facts ..) form under it.
When writing corresponding test suite in clojure.test, what should be used to replace, (facts ...) ? Is there something else in clojure with similar semantics ?
You can use
testingto group your tests. Paraphrased example from the linked doc page: