duck-booking-tool/booking/tests.py

18 lines
543 B
Python
Raw Normal View History

2014-12-23 08:13:22 +00:00
from django.test import TestCase, Client
class FrontTest(TestCase):
def setUp(self):
self.client = Client()
def test_vocabulary_page(self):
response = self.client.get('/vocabulary.html')
self.assertEqual(response.status_code, 200)
2014-12-23 10:09:23 +00:00
def test_terms_page(self):
response = self.client.get('/terms.html')
self.assertEqual(response.status_code, 200)
2014-12-23 10:59:26 +00:00
def test_disclaimer_page(self):
response = self.client.get('/disclaimer.html')
self.assertEqual(response.status_code, 200)