import pytest
import diabets_app
@pytest.fixture
def app():
app = diabets_app.app
app.debug = True
return app
def client(app):
return app.test_client()