Flask - Testing Flask Applications
Given this fixture and test, what will be the output when running pytest?
@pytest.fixture
def client():
app = Flask(__name__)
return app.test_client()
def test_home(client):
response = client.get('/')
print(response.status_code)