Roadmap - marick/Midje GitHub Wiki
1.3
- Continue to improve error messages, checker output and documentation.
 
Unscheduled
- XML/TAP format output, like this: https://github.com/arohner/lein-test-out
 
Possibilities in Discussion (which you are encouraged to join)
- Allow more clojure.core functions to be faked: https://github.com/marick/Midje/issues/64
 - Mocking Java Methods: https://github.com/marick/Midje/issues/55
 - Taggable Facts: https://github.com/marick/Midje/issues/71
 - Alternate Report Formatters: https://github.com/marick/Midje/issues/81
 - QuickCheck-like Fact Support: https://github.com/marick/Midje/issues/82
 - Mocking Java Static Methods: https://github.com/marick/Midje/issues/84
 - Ability to Test ClojureScript Code: https://github.com/marick/Midje/issues/92
 
Wishlist
- 
Something like a .midjerc that allows some configuration of behavior.
 - 
Rework the idea of "background" Background prerequisites and Setup, teardown, and state
 - 
Typed metaconstants A problem with metaconstants is that you can't say something like
(f ...n...) => (* 2 ...n...)because
...n...'s value is a symbol. It'd be nice if you could give it a type Integer, meaning it'd be assigned an arbitrary (random?) integer. - 
Reversible checkers.
...movie... => has-favorite-actor? ; instead of (has-favorite-actor? ...movie...) => truthy
(recommendations) => (just ...movie...) ; instead of (recommendations) => [...movie...]