mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Renamed the fixtures used by the aggregation tests so they're only loaded by the tests that use them. Refs #17275.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17153 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -10,7 +10,7 @@ from .models import Author, Publisher, Book, Store | ||||
|  | ||||
|  | ||||
| class BaseAggregateTestCase(TestCase): | ||||
|     fixtures = ["initial_data.json"] | ||||
|     fixtures = ["aggregation.json"] | ||||
|  | ||||
|     def test_empty_aggregate(self): | ||||
|         self.assertEqual(Author.objects.all().aggregate(), {}) | ||||
|   | ||||
| @@ -13,6 +13,8 @@ from .models import Author, Book, Publisher, Clues, Entries, HardbackBook | ||||
|  | ||||
|  | ||||
| class AggregationTests(TestCase): | ||||
|     fixtures = ["aggregation_regress.json"] | ||||
|  | ||||
|     def assertObjectAttrs(self, obj, **kwargs): | ||||
|         for attr, value in kwargs.iteritems(): | ||||
|             self.assertEqual(getattr(obj, attr), value) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user