|
@@ -68,10 +68,6 @@ class HackathonViewsTestCase(TestCase):
|
|
|
resp = self.client.get('/hackathon/githubResume/')
|
|
resp = self.client.get('/hackathon/githubResume/')
|
|
|
self.assertEqual(resp.status_code, 200)
|
|
self.assertEqual(resp.status_code, 200)
|
|
|
|
|
|
|
|
- def testTwilio(self):
|
|
|
|
|
- resp = self.client.get('/hackathon/twilio/')
|
|
|
|
|
- self.assertEqual(resp.status_code, 200)
|
|
|
|
|
-
|
|
|
|
|
def testNytimespop(self):
|
|
def testNytimespop(self):
|
|
|
resp = self.client.get('/hackathon/nytimespop/')
|
|
resp = self.client.get('/hackathon/nytimespop/')
|
|
|
self.assertEqual(resp.status_code, 200)
|
|
self.assertEqual(resp.status_code, 200)
|
|
@@ -102,3 +98,11 @@ class ScraperTestCase(TestCase):
|
|
|
resp = self.client.get('/hackathon/steamDiscountedGames/')
|
|
resp = self.client.get('/hackathon/steamDiscountedGames/')
|
|
|
self.assertNotEqual(resp.content, '')
|
|
self.assertNotEqual(resp.content, '')
|
|
|
|
|
|
|
|
|
|
+class TwilioTestCase(TestCase):
|
|
|
|
|
+ def testTwilio(self):
|
|
|
|
|
+ resp = self.client.get('/hackathon/twilio/')
|
|
|
|
|
+ self.assertEqual(resp.status_code, 200)
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|