forked from mirrors/LibreTranslate
19 lines
252 B
Python
19 lines
252 B
Python
|
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()
|