November 2014
Intermediate to advanced
258 pages
5h 15m
English
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.
We will build upon the test file named app_tests.py created in the last recipe.
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['WTF_CSRF_ENABLED'] = False
The following are some tests that are created as a part of this recipe. Each test will be described as we go further:
def test_products(self): "Test Products list ...
Read now
Unlock full access