-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mock multiple identical requests with different responses #104
Comments
Thanks for the comment. Currently, identical requests would return the same result. One possibility is to add un-relevant query params (just for testing purpose) for differentiating first ( |
I ran into a similar problem and it's not possible to change the query in our case. The actual HTTP request happens inside a library, which we have no control. |
I'm also suffering from this issue. It's hard to mock requests from |
@parroty i tried appending different unique query strings to the URL, I'm still getting back a previous response. |
My app polls a URL which returns "pending" until it returns "done". The URL is exactly the same each time I poll. Is it possible for exvcr to record the fact that the first request and the last request should send different responses?
The text was updated successfully, but these errors were encountered: