1
0
mirror of https://github.com/django/django.git synced 2025-06-05 11:39:13 +00:00

Add new methods to QUERYSET_PROXY_METHODS

This commit is contained in:
Aivars Kalvans 2023-09-25 14:04:32 +03:00
parent cd3ba1edf7
commit ed0cf42daa

View File

@ -695,6 +695,7 @@ class ManagerTest(SimpleTestCase):
"values", "values",
"values_list", "values_list",
"update", "update",
"update_returning",
"reverse", "reverse",
"defer", "defer",
"only", "only",
@ -726,6 +727,7 @@ class ManagerTest(SimpleTestCase):
"alatest", "alatest",
"aupdate", "aupdate",
"aupdate_or_create", "aupdate_or_create",
"aupdate_returning",
] ]
def test_manager_methods(self): def test_manager_methods(self):