In the last recipe, we got started with writing tests for our Flask application. In this recipe, we will build upon the same test file and add more tests for our application; these tests will cover testing the views for behavior and logic.
Writing more tests for views and logic
Getting ready
We will build upon the test file named app_tests.py created in the last recipe.
How to do it...
Before we write any tests, we need to add a small bit of configuration to setUp() to disable the CSRF tokens, as they are not generated by default for test environments:
app.config[&apos...