tests added

This commit is contained in:
2021-11-20 07:53:41 +00:00
parent 472fa5263a
commit 52b505211a
13 changed files with 50 additions and 6 deletions

10
tests/test_fixtures.py Normal file
View File

@@ -0,0 +1,10 @@
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()