Introduction
In this minimalist example, using pytest we're going to test that indeed our Hello World app does return "Hello, World!" with an HTTP OK status code of 200, when hit with a GET request on the URL /
First let's install pytest into our virtualenv
pip install pytest
And jus...