summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_scripts/management/commands/app_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/admin_scripts/management/commands/app_command.py')
-rw-r--r--tests/regressiontests/admin_scripts/management/commands/app_command.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/regressiontests/admin_scripts/management/commands/app_command.py b/tests/regressiontests/admin_scripts/management/commands/app_command.py
deleted file mode 100644
index d26df12642..0000000000
--- a/tests/regressiontests/admin_scripts/management/commands/app_command.py
+++ /dev/null
@@ -1,11 +0,0 @@
-from django.core.management.base import AppCommand
-
-
-class Command(AppCommand):
- help = 'Test Application-based commands'
- requires_model_validation = False
- args = '[appname ...]'
-
- def handle_app(self, app, **options):
- print('EXECUTE:AppCommand app=%s, options=%s' % (app, sorted(options.items())))
-