Projekt

Obecné

Profil

Stáhnout (202 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 7065d97a Stanislav Král
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()