summaryrefslogtreecommitdiff
path: root/docs/topics/testing/advanced.txt
diff options
context:
space:
mode:
authorTom Carrick <tom@carrick.eu>2023-11-05 16:41:16 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-23 10:39:29 +0100
commita03593967f098cf8dab79065bcabbcebd461f05b (patch)
treef5634ad9ae6d2e42ac8d7254bc85d0d4ceae0bee /docs/topics/testing/advanced.txt
parente76cc93b0168fa3abbafb9af1ab4535814b751f0 (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.txt8
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
=========================