summaryrefslogtreecommitdiff
path: root/tests/functional-tests/common/utils/storetest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional-tests/common/utils/storetest.py')
-rw-r--r--tests/functional-tests/common/utils/storetest.py28
1 files changed, 15 insertions, 13 deletions
diff --git a/tests/functional-tests/common/utils/storetest.py b/tests/functional-tests/common/utils/storetest.py
index be16b6caa..3c35e49fb 100644
--- a/tests/functional-tests/common/utils/storetest.py
+++ b/tests/functional-tests/common/utils/storetest.py
@@ -28,18 +28,20 @@ from common.utils import configuration as cfg
import unittest2 as ut
#import unittest as ut
+
class CommonTrackerStoreTest (ut.TestCase):
- """
- Common superclass for tests that just require a fresh store running
- """
- @classmethod
- def setUpClass (self):
- #print "Starting the daemon in test mode"
- self.system = TrackerSystemAbstraction ()
- self.system.tracker_store_testing_start ()
- self.tracker = self.system.store
- @classmethod
- def tearDownClass (self):
- #print "Stopping the daemon in test mode (Doing nothing now)"
- self.system.tracker_store_testing_stop ()
+ """
+ Common superclass for tests that just require a fresh store running
+ """
+ @classmethod
+ def setUpClass(self):
+ # print "Starting the daemon in test mode"
+ self.system = TrackerSystemAbstraction()
+ self.system.tracker_store_testing_start()
+ self.tracker = self.system.store
+
+ @classmethod
+ def tearDownClass(self):
+ # print "Stopping the daemon in test mode (Doing nothing now)"
+ self.system.tracker_store_testing_stop()