diff --git a/tests/management/__init__.py b/tests/management/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/management/commands/__init__.py b/tests/management/commands/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/management/commands/old_optparse_command.py b/tests/management/commands/old_optparse_command.py deleted file mode 100644 index d7844e5..0000000 --- a/tests/management/commands/old_optparse_command.py +++ /dev/null @@ -1,16 +0,0 @@ -from optparse import make_option -from django.core.management.base import BaseCommand - - -class Command(BaseCommand): - - # Used by a specific test to see how unupgraded - # management commands play with configurations. - # See the test code for more details. - - option_list = BaseCommand.option_list + ( - make_option('--arg1', action='store_true'), - ) - - def handle(self, *args, **options): - pass