summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management/commands/custom_startproject.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_scripts/management/commands/custom_startproject.py')
-rw-r--r--tests/admin_scripts/management/commands/custom_startproject.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/admin_scripts/management/commands/custom_startproject.py b/tests/admin_scripts/management/commands/custom_startproject.py
new file mode 100644
index 0000000000..80c6d6b805
--- /dev/null
+++ b/tests/admin_scripts/management/commands/custom_startproject.py
@@ -0,0 +1,11 @@
+from optparse import make_option
+
+from django.core.management.commands.startproject import Command as BaseCommand
+
+
+class Command(BaseCommand):
+ option_list = BaseCommand.option_list + (
+ make_option('--extra',
+ action='store', dest='extra',
+ help='An arbitrary extra value passed to the context'),
+ )