reorganization of tests (1 route per file), add some basic tests

This commit is contained in:
Sébastien Thuret 2022-04-03 11:07:37 +02:00
parent 00a6039289
commit 0874dc062e
No known key found for this signature in database
GPG key ID: 230B93BBA62CB043
6 changed files with 64 additions and 15 deletions

View file

@ -0,0 +1,18 @@
import sys
import pytest
from app.app import create_app
from app.main import get_args
@pytest.fixture()
def app():
sys.argv = ['']
app = create_app(get_args())
yield app
@pytest.fixture()
def client(app):
return app.test_client()