11 lines
172 B
Python
11 lines
172 B
Python
import os
|
|
import pytest
|
|
from flaskpages import create_app
|
|
|
|
@pytest.fixture
|
|
def app():
|
|
return create_app()
|
|
@pytest.fixture
|
|
def client(app):
|
|
return app.test_client()
|