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
https://docs.pylonsproject.org/projects/webtest/en/latest/api.html#webtest.app.TestApp.delete
The doc says that Do a DELETE request. Similar to get().
Do a DELETE request. Similar to get().
But actually, the parameter params of get() create a querystring.
params
get()
And params in DELETE create an url encode version of the parameter in a body.
DELETE
so it behave more like post() than get()
post()
Describe the improvement
As an improvement, actually, a breaking change should be made, where params should act like get()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Documentation Suggestion
https://docs.pylonsproject.org/projects/webtest/en/latest/api.html#webtest.app.TestApp.delete
The doc says that
Do a DELETE request. Similar to get().
But actually, the parameter
params
ofget()
create a querystring.And
params
inDELETE
create an url encode version of the parameter in a body.so it behave more like
post()
thanget()
Describe the improvement
As an improvement, actually, a breaking change should be made, where params should act like
get()
The text was updated successfully, but these errors were encountered: