summaryrefslogtreecommitdiff
path: root/tests/basic
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2018-09-18 21:14:44 +0100
committerTim Graham <timograham@gmail.com>2018-09-18 16:14:44 -0400
commit9cbdb44014c8027f1b4571bac701a247b0ce02a3 (patch)
treeb7cd20864b0d06f5e08b2c98a50cd5ef2a4cd9a0 /tests/basic
parent7b159df94235036a41ee93952ff83bbc95c1da3c (diff)
Fixed #23646 -- Added QuerySet.bulk_update() to efficiently update many models.
Diffstat (limited to 'tests/basic')
-rw-r--r--tests/basic/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basic/tests.py b/tests/basic/tests.py
index 2ec6ace638..d12322b705 100644
--- a/tests/basic/tests.py
+++ b/tests/basic/tests.py
@@ -532,6 +532,7 @@ class ManagerTest(SimpleTestCase):
'update_or_create',
'create',
'bulk_create',
+ 'bulk_update',
'filter',
'aggregate',
'annotate',