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)