Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / south / management / commands / test.py @ d1a4905f

History | View | Annotate | Download (268 Bytes)

1
from django.core.management.commands import test
2

    
3
from south.management.commands import patch_for_test_db_setup
4

    
5
class Command(test.Command):
6
    def handle(self, *args, **kwargs):
7
        patch_for_test_db_setup()
8
        super(Command, self).handle(*args, **kwargs)