You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
181 B
Python

1 year ago
import pytest
from htmx_contact.app import app
@pytest.fixture()
def client():
return app.test_client()
@pytest.fixture()
def runner(app):
return app.test_cli_runner()