summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-17 12:59:07 -0500
committerTim Graham <timograham@gmail.com>2015-01-17 12:59:07 -0500
commit4a03d348c70caa3e21393e08e6e665ef752202ac (patch)
treec7bc66eba84227a1130c1c18f5aabb18e72acf9b /tests/admin_scripts/tests.py
parent18192b9fa4387d5e6c677a7929d91ce04f92cda7 (diff)
Removed BaseCommand.requires_model_validation per deprecation timeline.
Diffstat (limited to 'tests/admin_scripts/tests.py')
-rw-r--r--tests/admin_scripts/tests.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py
index 7ed840aaf5..f4a29552b5 100644
--- a/tests/admin_scripts/tests.py
+++ b/tests/admin_scripts/tests.py
@@ -1662,11 +1662,6 @@ class CommandTypes(AdminScriptTestCase):
self.assertOutput(out, "EXECUTE:LabelCommand label=testlabel, options=[('no_color', False), ('pythonpath', None), ('settings', None), ('traceback', False), ('verbosity', 1)]")
self.assertOutput(out, "EXECUTE:LabelCommand label=anotherlabel, options=[('no_color', False), ('pythonpath', None), ('settings', None), ('traceback', False), ('verbosity', 1)]")
- @ignore_warnings(category=RemovedInDjango19Warning)
- def test_requires_model_validation_and_requires_system_checks_both_defined(self):
- from .management.commands.validation_command import InvalidCommand
- self.assertRaises(ImproperlyConfigured, InvalidCommand)
-
class Discovery(TestCase):