Ejemplo n.º 1
0
 def test_index_view_basic(self):
     """
     Test that index view returns a 200 response and uses the correct template
     """
     request = self.factory.get('/')
     response = index(request)
     with self.assertTemplateUsed('solos/index.html'):
         response = index(request)
         self.assertEqual(response.status_code, 200)
Ejemplo n.º 2
0
 def test_index_view_basic(self):
     """
     Test that index view returns a 200 response and uses the correct template
     """
     request = self.factory.get('/')
     response = index(request)
     with self.assertTemplateUsed('solos/index.html'):
         response = index(request)
         self.assertEqual(response.status_code, 200)
Ejemplo n.º 3
0
 def test_index_view_basic(self):
     '''
     測試index view會回覆200,而且使用正確的範本
     '''
     request = self.factory.get('/')
     with self.assertTemplateUsed('solos/index.html'):
         response = index(request)
         self.assertEqual(response.status_code, 200)
Ejemplo n.º 4
0
 def test_index_view_basic(self):
     """
     Test that index view returns a 200 response and uses the correct template
     """
     request = self.factory.get('/')
     # first check using context manager that solos/index.html template is used
     with self.assertTemplateUsed('solos/index.html'):
         # then check the response and that it returns code 200
         response = index(request)
         self.assertEqual(response.status_code, 200)