1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66 | import unittest
import os
import sys
from django.conf import settings
from south.hacks import hacks
# Add the tests directory so fakeapp is on sys.path
test_root = os.path.dirname(__file__)
sys.path.append(test_root)
# Note: the individual test files are imported below this.
class Monkeypatcher(unittest.TestCase):
"""
Base test class for tests that play with the INSTALLED_APPS setting at runtime.
"""
def create_fake_app(self, name):
class Fake:
pass
fake = Fake()
fake.__name__ = name
return fake
def create_test_app(self):
class Fake:
pass
fake = Fake()
fake.__name__ = "fakeapp.migrations"
fake.__file__ = os.path.join(test_root, "fakeapp", "migrations", "__init__.py")
return fake
def setUp(self):
"""
Changes the Django environment so we can run tests against our test apps.
"""
# Set the installed apps
hacks.set_installed_apps(["fakeapp", "otherfakeapp"])
def tearDown(self):
"""
Undoes what setUp did.
"""
hacks.reset_installed_apps()
# Try importing all tests if asked for (then we can run 'em)
try:
skiptest = settings.SKIP_SOUTH_TESTS
except:
skiptest = False
if not skiptest:
from south.tests.db import *
from south.tests.logic import *
from south.tests.autodetection import *
from south.tests.logger import *
from south.tests.inspector import *
|