We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I must match a strange URL like: http://example.tld/path/key=foo?bar=1 It seems that this is not possible and i must use requests_mock.ANY
http://example.tld/path/key=foo?bar=1
requests_mock.ANY
The text was updated successfully, but these errors were encountered:
Ok, so this is weird because the key=foo is part of the path, and bar is part of the querystring.
Even with that it does appear to work, got any other examples:
import requests import requests_mock with requests_mock.mock() as m: m.get("http://example.tld/path/key=foo?bar=1", text="1") requests.get("http://example.tld/path/key=foo?bar=1&baz=2")
certifi==2021.10.8 charset-normalizer==2.0.12 idna==3.3 requests==2.27.1 -e git+ssh://git@github.com/jamielennox/requests-mock.git@0aeaecd3f43be0fc99a342fa2d6f77d9702997b1#egg=requests_mock six==1.16.0 urllib3==1.26.9
There was some weirdness around reencoding unexpected variables, but that should have been sorted out in at least the last release.
Sorry, something went wrong.
No branches or pull requests
I must match a strange URL like:
http://example.tld/path/key=foo?bar=1
It seems that this is not possible and i must use
requests_mock.ANY
The text was updated successfully, but these errors were encountered: