is there a newbies channel for questions? or can I just ask here?
there is a beginners channel (for general clojure questions)
if you have questions about testing, you can ask them here
a good rule of thumb for async communication: don’t ask to ask, just ask
perfect! Thanks @roberto!
I want to test an api endpoint to work with pagination
this test is going to be very similar for many resources
I was wondering if I can create a function that has multiple deftest
or what would be a good approach to do so
I’m afraid I don’t understand. Some code snippets would help. I don’t think I’ve ever had the need to wrap deftest
inside a function, btw.
I have an api with two endpoints customers
and houses
and I want to test that both of them behave as I expect when using pagination
I was wondering what would be the idiomatic way to share/reuse the same assertions for houses