mirror of
https://github.com/django/django.git
synced 2025-08-15 08:10:29 +00:00
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>
This commit is contained in:
parent
27aa7035f5
commit
58b27e0dbb
9 changed files with 748 additions and 23 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue