testing

Testing tools, testing philosophy & methodology...
Daniel Wellman 2021-03-12T18:33:46.030Z

I’m looking into some record/replay tools for some tests - making sure that my code interacts properly with another service over HTTP. I have used WireMock in Java before, and see there are a few different Clojure libraries to use this. 1. What tools do you use for these kinds of HTTP tests? 2. If you use WireMock, how do you do it? Via a library, use your own functions, etc.

ljosa 2021-03-12T21:20:54.030100Z

We use https://github.com/gfredericks/vcr-clj

Daniel Wellman 2021-03-12T22:20:02.030400Z

Thanks @ljosa I’ll check it out