Commit 2dfe3ad6 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Added tests for the bash completion script from [11526]. Thanks to Eric Holscher.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11745 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent bb4062d5
Loading
Loading
Loading
Loading
+0 −0

Empty file added.

+0 −0

Empty file added.

+0 −0

Empty file added.

+13 −0
Original line number Diff line number Diff line
import sys, os
from optparse import OptionParser, make_option

from django.core.management.base import BaseCommand

class Command(BaseCommand):
    option_list = BaseCommand.option_list + (
        make_option("--list", action="store_true", dest="list",
                    help="Print all options"),
    )

    def handle(self, *args, **options):
        pass
+0 −0

Empty file added.

Loading