Make all tests inherit from the same base class.
diff --git a/kong/tests/test_flavors.py b/kong/tests/test_flavors.py
index c717530..e5ab762 100644
--- a/kong/tests/test_flavors.py
+++ b/kong/tests/test_flavors.py
@@ -1,19 +1,15 @@
 import json
 import os
 
-import unittest2 as unittest
-
 from kong import openstack
+from kong import tests
 
 
-class FlavorsTest(unittest.TestCase):
-
+class FlavorsTest(tests.FunctionalTest):
     def setUp(self):
+        super(FlavorsTest, self).setUp()
         self.os = openstack.Manager()
 
-    def tearDown(self):
-        pass
-
     def _index_flavors(self):
         url = '/flavors'
         response, body = self.os.nova.request('GET', url)