def test_create_app_no_config_should_raises_error(self):
     create_app(config=None)
 def test_create_app(self):
     app = create_app()
     ok_(isinstance(app, Flask), msg='The app must be a Flask instance')
 def test_create_app_no_env_should_raises_error(self):
     create_app(env=None)
from flask_site.helpers import create_app

__version__ = "1.0.3"

app = create_app()