From 2102e04feca95ae335854426107892e3d7d2b4bd Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Sun, 27 Mar 2016 14:23:33 -0700 Subject: [PATCH] Adding tests for ping and health enpoint --- tests/core_tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/core_tests.py b/tests/core_tests.py index dd936bb86..41cf79c9e 100644 --- a/tests/core_tests.py +++ b/tests/core_tests.py @@ -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