Fix incorrect class of swagger code.
[vfc/nfvo/catalog.git] / catalog / swagger / tests.py
index 46e3f0d..d52fa84 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2016-2017 ZTE Corporation.
+# Copyright 2017 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # 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/catalog/v1/swagger.json")
         self.assertEqual(status.HTTP_200_OK, response.status_code, response.content)
-#        resp_data = json.loads(response.content)
-#        self.assertEqual({"status": "active"}, resp_data)