forked from GithubBackups/healthchecks
9 lines
202 B
Python
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)
|