Flask - Testing Flask Applications
You wrote this fixture but tests fail with AttributeError: 'NoneType' object has no attribute 'get'. What is the likely problem?
@pytest.fixture
def client():
app = Flask(__name__)
client = app.test_client()
client.get('/')
