2008-07-10 20:12:41 +08:00
|
|
|
from django.core.management.base import AppCommand
|
2008-07-13 16:48:18 +08:00
|
|
|
# Python 2.3 doesn't have sorted()
|
|
|
|
try:
|
|
|
|
sorted
|
|
|
|
except NameError:
|
|
|
|
from django.utils.itercompat import sorted
|
2008-07-10 20:12:41 +08:00
|
|
|
|
|
|
|
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()))
|
|
|
|
|