Party/tests/__init__.py
2023-07-05 02:19:04 +02:00

17 lines
262 B
Python

import pytest
from party.main import create_app
@pytest.fixture
def app():
app = create_app()
yield app
@pytest.fixture
def client(app):
client = app.test_client()
yield client
@pytest.fixture
def runner(app):
return app.test_cli_runner()