We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e900f65 commit 0d598a5Copy full SHA for 0d598a5
README.rst
@@ -21,15 +21,22 @@ simply as follows::
21
A TestCase class that combines minimocktest and django.test.TestCase
22
'''
23
24
- def setUp(self):
25
- TestCase.setUp(self)
+ def _pre_setup(self):
+ TestCase._pre_setup(self)
26
MockTestCase.setUp(self)
27
# optional: shortcut client handle for quick testing
28
self.client = Client()
29
30
- def tearDown(self):
+ def _post_teardown(self):
31
MockTestCase.tearDown(self)
32
- TestCase.tearDown(self)
+ TestCase._post_teardown(self)
33
+
34
+ def setUp(self):
35
+ pass
36
37
+ def tearDown(self):
38
39
40
41
COPYING
42
-------
0 commit comments