rudibridge-mirror/api/tests/conftest.py
Ewen 94547f2031 Leap forward
- added tests (pytest)
- use GET parameters to parse a page
- return an actual RSS feed
2024-05-08 10:13:54 +02:00

15 lines
228 B
Python

import pytest
from api import create_app
@pytest.fixture()
def app():
app = create_app()
app.config.update({
"TESTING": True
})
yield app
@pytest.fixture()
def client(app):
return app.test_client()