Make all tests inherit from the same base class.
diff --git a/kong/tests/test_images.py b/kong/tests/test_images.py
index 2b8c19e..2fc0b61 100644
--- a/kong/tests/test_images.py
+++ b/kong/tests/test_images.py
@@ -1,14 +1,14 @@
import json
import os
-import unittest2 as unittest
-
from kong import openstack
+from kong import tests
-class ImagesTest(unittest.TestCase):
+class ImagesTest(tests.FunctionalTest):
def setUp(self):
+ super(ImagesTest, self).setUp()
self.os = openstack.Manager()
host = self.os.config.nova.host