aswi2021jmsd-gitlab4/tests/conftest.py @ 7065d97a
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() |