Hi Johan,
I didn't want to throw this into the issues list as an enhancement just yet without allowing you / the community to offer insight...
Is it possible currently to generate repeatable curl commands from Rest Assured? Is there a "proper" way or solution you can suggest outside of Rest Assured?
My thoughts on the RA side of things:
given().
get("/myAPI");
The idea is that as my request is being logged to the console I would also like to be able to automagically log a curl string that would repeat the request. Whether that is log().all() // includes curl output, or log().request() // only logs request data etc I'm not certain.
What do you think?
Thanks,
JP