From 58b27e0dbb3d31ca1438790870b2b51ecdb10500 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 8 Sep 2021 17:01:53 +0100 Subject: Fixed #33646 -- Added async-compatible interface to QuerySet. Thanks Simon Charette for reviews. Co-authored-by: Carlton Gibson Co-authored-by: Mariusz Felisiak --- tests/basic/tests.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'tests/basic') 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): -- cgit v1.3