/ test / allthethings / page / test_views.py
test_views.py
 1  from flask import url_for
 2  
 3  from lib.test import ViewTestMixin
 4  
 5  
 6  class TestPage(ViewTestMixin):
 7      def test_home_page(self):
 8          """Home page should respond with a success 200."""
 9          response = self.client.get(url_for("page.home"))
10  
11          assert response.status_code == 200