From f63c33560d084bb2f5bd773bf6e51f3d04e44e64 Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Thu, 22 Sep 2016 17:10:35 +0800 Subject: Remove Brhamaputra dashboard process from testapi Now, ELK is the framework used for dashboarding JIRA: FUNCTEST-489 Change-Id: I51e8bc83e7309a226515f603eb4c468b7e7a69bd Signed-off-by: SerenaFeng --- .../tests/unit/test_dashboard_project.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 result_collection_api/opnfv_testapi/tests/unit/test_dashboard_project.py (limited to 'result_collection_api/opnfv_testapi/tests/unit/test_dashboard_project.py') diff --git a/result_collection_api/opnfv_testapi/tests/unit/test_dashboard_project.py b/result_collection_api/opnfv_testapi/tests/unit/test_dashboard_project.py deleted file mode 100644 index f9d2015..0000000 --- a/result_collection_api/opnfv_testapi/tests/unit/test_dashboard_project.py +++ /dev/null @@ -1,20 +0,0 @@ -import json - -from opnfv_testapi.common.constants import HTTP_OK -from test_base import TestBase - - -class TestDashboardProjectBase(TestBase): - def setUp(self): - super(TestDashboardProjectBase, self).setUp() - self.basePath = '/dashboard/v1/projects' - self.list_res = None - self.projects = ['bottlenecks', 'doctor', 'functest', - 'promise', 'qtip', 'vsperf', 'yardstick'] - - -class TestDashboardProjectGet(TestDashboardProjectBase): - def test_list(self): - code, body = self.get() - self.assertEqual(code, HTTP_OK) - self.assertItemsEqual(self.projects, json.loads(body)) -- cgit 1.2.3-korg