Fix vfc-catalog/swagger pep8 issue.
[vfc/nfvo/lcm.git] / lcm / swagger / tests.py
index b877609..4f2e652 100644 (file)
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
 import unittest
-import json
+
 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)