remove swagger test function
[vfc/nfvo/lcm.git] / lcm / swagger / tests.py
index b877609..9bc1cef 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
+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):
-        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)
+    # test_swagger(self):
+    # response = self.client.get("/api/nslcm/v1/swagger.json")
+    # self.assertEqual(status.HTTP_200_OK, response.status_code, response.content)