mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +00:00
Fixed a test that depended on the DB backend; refs #19877. Thanks Loic.
This commit is contained in:
parent
5b47a9c5a0
commit
dffda2ba4e
2 changed files with 15 additions and 10 deletions
9
tests/admin_scripts/management/commands/color_command.py
Normal file
9
tests/admin_scripts/management/commands/color_command.py
Normal 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')
|
Loading…
Add table
Add a link
Reference in a new issue