sort-of-pastebin/conftest.py

10 lines
155 B
Python
Raw Permalink Normal View History

2023-12-29 20:52:40 +01:00
import pytest
2024-04-19 18:52:50 +02:00
import snapbin.main as snapbin
2023-12-29 20:52:40 +01:00
@pytest.fixture()
def app():
snapbin.app.config["TESTING"] = True
return snapbin.app.test_client()