Fixed a test that depended on the DB backend; refs #19877. Thanks Loic.

This commit is contained in:
Tim Graham 2013-07-30 11:30:20 -04:00
parent 5b47a9c5a0
commit dffda2ba4e
2 changed files with 15 additions and 10 deletions

View file

@ -0,0 +1,9 @@
from django.core.management.base import NoArgsCommand
class Command(NoArgsCommand):
help = "Test color output"
requires_model_validation = False
def handle_noargs(self, **options):
return self.style.SQL_KEYWORD('BEGIN')