コード例 #1
0
def app():
    return create_app()
コード例 #2
0
ファイル: tests.py プロジェクト: imfht/flaskapps
def app():
    app = create_app()
    yield app
    app.container.unwire()
コード例 #3
0
def app():
    Sanic.test_mode = True
    app = create_app()
    yield app
    app.ctx.container.unwire()