0
0
mirror of https://github.com/django/django.git synced 2024-11-29 22:56:46 +01:00

Use built-in fixture support rather than calling loaddata in setUp().

This commit is contained in:
Carl Meyer 2013-02-25 12:13:10 -07:00
parent 86b96038f2
commit 509798ae06

View File

@ -364,9 +364,7 @@ class ProxyModelTests(TestCase):
class ProxyModelAdminTests(TestCase):
def setUp(self):
management.call_command('loaddata', 'myhorses.json', verbosity=0,
commit=False)
fixtures = ['myhorses']
def test_cascade_delete_proxy_model_admin_warning(self):
"""