summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/bulk_create/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/bulk_create/tests.py b/tests/regressiontests/bulk_create/tests.py
index 8d3faa2379..d7d19a54aa 100644
--- a/tests/regressiontests/bulk_create/tests.py
+++ b/tests/regressiontests/bulk_create/tests.py
@@ -17,7 +17,8 @@ class BulkCreateTests(TestCase):
]
def test_simple(self):
- Country.objects.bulk_create(self.data)
+ created = Country.objects.bulk_create(self.data)
+ self.assertEqual(len(created), 4)
self.assertQuerysetEqual(Country.objects.order_by("-name"), [
"United States of America", "The Netherlands", "Germany", "Czech Republic"
], attrgetter("name"))