コード例 #1
0
ファイル: test_views.py プロジェクト: shv-q3/Buku
def client(tmp_path):
    test_db = tmp_path / 'test.db'
    app = server.create_app(test_db.as_posix())
    app_context = app.test_request_context()
    app_context.push()
    client = app.test_client()
    return client
コード例 #2
0
ファイル: test_server.py プロジェクト: ye-man/Buku
def client(tmp_path):
    test_db = tmp_path / 'test.db'
    app = server.create_app(test_db.as_posix())
    client = app.test_client()
    return client