aswi2021jmsd-gitlab4/tests/conftest.py @ fbfc4b04
1 |
import pytest |
---|---|
2 | |
3 |
from app import app as flask_app |
4 | |
5 | |
6 |
# initialize our Flask app for testcases
|
7 |
@pytest.fixture |
8 |
def app(): |
9 |
yield flask_app |
10 | |
11 | |
12 |
@pytest.fixture |
13 |
def client(app): |
14 |
return app.test_client() |