14 lines
399 B
Python
14 lines
399 B
Python
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)
|
|
|
|
def test_terms_page(self):
|
|
response = self.client.get('/terms.html')
|
|
self.assertEqual(response.status_code, 200)
|