10 lines
114 B
Python
10 lines
114 B
Python
import pytest
|
|
|
|
from teufa.app import create_app
|
|
|
|
|
|
@pytest.fixture
|
|
def app():
|
|
app = create_app()
|
|
yield app
|