コード例 #1
0
ファイル: views_test.py プロジェクト: frenzymadness/python.cz
def test_client():
    """Flask app test client"""
    app.testing = True
    with app.test_client() as client:
        yield client
    app.testing = False
コード例 #2
0
def test_client():
    """Flask app test client"""
    app.testing = True
    with app.test_client() as client:
        yield client
    app.testing = False