From f2bc919ec00457fd53f093af53ab71c7f1bcfbcd Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 10 Sep 2011 21:44:57 +0000 Subject: Ensure bulk_create returns what it is supposed to. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16791 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/bulk_create/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') 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")) -- cgit v1.3