summaryrefslogtreecommitdiff
path: root/tests/basic
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2021-09-08 17:01:53 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-04-26 20:25:23 +0200
commit58b27e0dbb3d31ca1438790870b2b51ecdb10500 (patch)
tree04350501dde491cd1942cc08319e6b0dbddb6c72 /tests/basic
parent27aa7035f57f0db30b6632e4274e18b430906799 (diff)
downloaddjango-58b27e0dbb3d31ca1438790870b2b51ecdb10500.tar.gz
Fixed #33646 -- Added async-compatible interface to QuerySet.
Thanks Simon Charette for reviews. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'tests/basic')
-rw-r--r--tests/basic/tests.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/basic/tests.py b/tests/basic/tests.py
index 7be1595be5..e27fb66e3d 100644
--- a/tests/basic/tests.py
+++ b/tests/basic/tests.py
@@ -702,6 +702,24 @@ class ManagerTest(SimpleTestCase):
"union",
"intersection",
"difference",
+ "aaggregate",
+ "abulk_create",
+ "abulk_update",
+ "acontains",
+ "acount",
+ "acreate",
+ "aearliest",
+ "aexists",
+ "aexplain",
+ "afirst",
+ "aget",
+ "aget_or_create",
+ "ain_bulk",
+ "aiterator",
+ "alast",
+ "alatest",
+ "aupdate",
+ "aupdate_or_create",
]
def test_manager_methods(self):