Serious test-related question -- there is a bunch of code that relies on talking to an API that we do not control. How would YOU go about writing tests for code that relies on this API internally?
@grmpyprogrammer I normally send real requests using an HTTP client like Postman and save the JSON response to a fixture file. I then mock the request to return that data.