diff options
| author | Tom Carrick <tom@carrick.eu> | 2023-11-05 16:41:16 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-11-23 10:39:29 +0100 |
| commit | a03593967f098cf8dab79065bcabbcebd461f05b (patch) | |
| tree | f5634ad9ae6d2e42ac8d7254bc85d0d4ceae0bee /docs/topics/testing/advanced.txt | |
| parent | e76cc93b0168fa3abbafb9af1ab4535814b751f0 (diff) | |
Fixed #14611 -- Added query_params argument to RequestFactory and Client classes.
Diffstat (limited to 'docs/topics/testing/advanced.txt')
| -rw-r--r-- | docs/topics/testing/advanced.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt index 6f3f54e341..d889bd02ee 100644 --- a/docs/topics/testing/advanced.txt +++ b/docs/topics/testing/advanced.txt @@ -32,6 +32,10 @@ restricted subset of the test client API: attributes must be supplied by the test itself if required for the view to function properly. +.. versionchanged:: 5.1 + + The ``query_params`` parameter was added. + Example ------- @@ -85,6 +89,10 @@ difference being that it returns ``ASGIRequest`` instances rather than Arbitrary keyword arguments in ``defaults`` are added directly into the ASGI scope. +.. versionchanged:: 5.1 + + The ``query_params`` parameter was added. + Testing class-based views ========================= |
