healthchecks/hc/front/tests/test_basics.py
2015-06-25 22:29:19 +03:00

9 lines
197 B
Python

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