equal
deleted
inserted
replaced
1 import testconfig |
1 import testconfig |
2 import unittest |
2 import unittest |
3 import keywords |
3 import keywords |
4 import my_db |
4 import my_db |
5 |
5 |
6 class TestKeywords(unittest.TestCase): |
6 class TestKeywordsWithDB(unittest.TestCase): |
7 def setUp(self): |
7 def setUp(self): |
8 " Setup a test-db environment." |
8 " Setup a test-db environment." |
9 self.db = my_db.connect(testconfig.CONFIG, "test") |
9 self.db = my_db.connect(testconfig.CONFIG, "test") |
10 |
10 |
11 def tearDown(self): |
11 def tearDown(self): |