21 lines
325 B
Python
21 lines
325 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def app():
|
|
from ed_lrr_gui.web import app as flask_app
|
|
yield flask_app
|
|
|
|
|
|
@pytest.fixture
|
|
def db():
|
|
from ed_lrr_gui.web import db as flask_db
|
|
yield flask_db
|
|
|
|
|
|
class Test_DB(object): # noqa: H601
|
|
pass
|
|
|
|
|
|
class Test_Webapp(object): # noqa: H601
|
|
pass
|