aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2017-09-22 17:24:56 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2017-09-22 17:24:56 +0800
commita3b4fa60bf755e8d86632bc3f5de7c183dc544ed (patch)
tree6ecf99d27596d2deee24c098769819e346093fff
parent2dad02c346be21536f851fa4bb1c1bd869de74e1 (diff)
Refactor swagger test cases
Change-Id: Ib074f418bd1200b7260e206a12d35b1945906825 Issue-Id: VFC-428 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r--lcm/swagger/tests.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/lcm/swagger/tests.py b/lcm/swagger/tests.py
index b877609a..54551faf 100644
--- a/lcm/swagger/tests.py
+++ b/lcm/swagger/tests.py
@@ -15,16 +15,13 @@ from django.test import Client
from rest_framework import status
-class SampleViewTest(unittest.TestCase):
+class SwaggerViewTest(unittest.TestCase):
def setUp(self):
self.client = Client()
def tearDown(self):
pass
- def test_sample(self):
+ def test_swagger(self):
response = self.client.get("/api/nslcm/v1/swagger.json")
- print response
self.assertEqual(status.HTTP_200_OK, response.status_code, response.content)
-# resp_data = json.loads(response.content)
-# self.assertEqual({"status": "active"}, resp_data)