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

9 years ago
  1. from django.contrib.auth.models import User
  2. from django.test import TestCase
  3. from hc.api.models import Check
  4. class MyChecksTestCase(TestCase):
  5. def setUp(self):
  6. self.alice = User(username="alice")
  7. self.alice.set_password("password")
  8. self.alice.save()
  9. self.check = Check(user=self.alice, name="Alice Was Here")
  10. self.check.save()
  11. def test_it_works(self):
  12. self.client.login(username="alice", password="password")
  13. r = self.client.get("/checks/")
  14. self.assertContains(r, "Alice Was Here", status_code=200)