tests.py 208 B

12345678
  1. from django.test import TestCase
  2. # Create your tests here.
  3. class HackathonViewsTestCase(TestCase):
  4. def testIndex(self):
  5. resp = self.client.get('/hackathon/api/')
  6. self.assertEqual(resp.status_code, 200)