Adding tests for ping and health enpoint

This commit is contained in:
Maxime Beauchemin 2016-03-27 14:23:33 -07:00
parent 2397645ed4
commit 2102e04fec
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@ class LiveTest(TestCase):
if failed:
raise Exception("Failed a doctest")
def misc(self):
self.client.get('/health')
self.client.get('/ping')
def tearDown(self):
pass