diff options
Diffstat (limited to 'lib/python2.7/site-packages/south/management/commands/test.py')
-rw-r--r-- | lib/python2.7/site-packages/south/management/commands/test.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/python2.7/site-packages/south/management/commands/test.py b/lib/python2.7/site-packages/south/management/commands/test.py new file mode 100644 index 0000000..9901786 --- /dev/null +++ b/lib/python2.7/site-packages/south/management/commands/test.py @@ -0,0 +1,8 @@ +from django.core.management.commands import test + +from south.management.commands import patch_for_test_db_setup + +class Command(test.Command): + def handle(self, *args, **kwargs): + patch_for_test_db_setup() + super(Command, self).handle(*args, **kwargs) |