--- a/Allura/allura/tests/__init__.py
+++ b/Allura/allura/tests/__init__.py
@@ -1,24 +1,13 @@
# -*- coding: utf-8 -*-
"""Unit and functional test suite for allura."""
-from . import helpers
-
-__all__ = ['setup_db', 'teardown_db', 'TestController', 'helpers']
-
-def setup_db():
- """Method used to build a database"""
- pass
-
-def teardown_db():
- """Method used to destroy a database"""
- pass
+import alluratest.controller
-class TestController(object):
- def setUp(self):
- """Method called by nose before running each test"""
- self.app = helpers.setup_functional_test()
-
- def tearDown(self):
- """Method called by nose after running each test"""
- pass
+class TestController(alluratest.controller.TestController):
+ """
+ Base functional test case for the controllers.
+
+ """
+
+ application_under_test = 'main_without_authn'