tests.py 318 B

123456789101112
  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)
  7. def testSteam(self):
  8. resp = self.client.get('/hackathon/steam')
  9. self.assertEqual(resp.status_code, 301)