Projekt

Obecné

Profil

Stáhnout (202 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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()
(2-2/3)