aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)