healthchecks/hc/front/tests/test_basics.py
Pēteris Caune d415f42afc Fix tests
2015-07-01 20:13:19 +03:00

9 lines
202 B
Python

from django.test import TestCase
class BasicsTestCase(TestCase):
def test_it_shows_welcome(self):
r = self.client.get("/")
self.assertContains(r, "Get Notified", status_code=200)