diff options
| author | Tim Graham <timograham@gmail.com> | 2015-01-17 12:59:07 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-17 12:59:07 -0500 |
| commit | 4a03d348c70caa3e21393e08e6e665ef752202ac (patch) | |
| tree | c7bc66eba84227a1130c1c18f5aabb18e72acf9b /tests/admin_scripts/management | |
| parent | 18192b9fa4387d5e6c677a7929d91ce04f92cda7 (diff) | |
Removed BaseCommand.requires_model_validation per deprecation timeline.
Diffstat (limited to 'tests/admin_scripts/management')
| -rw-r--r-- | tests/admin_scripts/management/commands/validation_command.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/admin_scripts/management/commands/validation_command.py b/tests/admin_scripts/management/commands/validation_command.py deleted file mode 100644 index d0cbe19a81..0000000000 --- a/tests/admin_scripts/management/commands/validation_command.py +++ /dev/null @@ -1,11 +0,0 @@ -from django.core.management.base import BaseCommand - - -class InvalidCommand(BaseCommand): - help = ("Test raising an error if both requires_system_checks " - "and requires_model_validation are defined.") - requires_system_checks = True - requires_model_validation = True - - def handle(self, **options): - pass |
