summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/databases
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tutorial/databases')
-rw-r--r--docs/quick_tutorial/databases/tutorial/tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/quick_tutorial/databases/tutorial/tests.py b/docs/quick_tutorial/databases/tutorial/tests.py
index 4aeb718e6..11e747d15 100644
--- a/docs/quick_tutorial/databases/tutorial/tests.py
+++ b/docs/quick_tutorial/databases/tutorial/tests.py
@@ -23,9 +23,11 @@ def _initTestingDB():
class WikiViewTests(unittest.TestCase):
def setUp(self):
self.session = _initTestingDB()
+ self.config = testing.setUp()
def tearDown(self):
self.session.remove()
+ testing.tearDown()
def test_wiki_view(self):
from tutorial.views import WikiViews