You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
576 B

from django.contrib.auth.models import User
from django.test import TestCase
from hc.api.models import Check
class MyChecksTestCase(TestCase):
def setUp(self):
self.alice = User(username="alice")
self.alice.set_password("password")
self.alice.save()
self.check = Check(user=self.alice, name="Alice Was Here")
self.check.save()
def test_it_works(self):
self.client.login(username="alice", password="password")
r = self.client.get("/checks/")
self.assertContains(r, "Alice Was Here", status_code=200)