testing

Testing tools, testing philosophy & methodology...
craftybones 2020-05-17T10:10:30.013700Z

What is the canonical way to test state in Clojure? Assuming you have some atom that contains the app-state and there are a bunch of handlers that manipulate it and you want to test the handlers, do you use with-redefs to set the app-state?

craftybones 2020-05-17T10:20:55.014100Z

More importantly, if I want to set the state up and then call the handlers, what would I do?