def test_init():
    """Test extension initialization."""
    app = Flask('testapp')
    ext = CDSSorenson(app)
    assert 'cds-sorenson' in app.extensions

    app = Flask('testapp')
    ext = CDSSorenson()
    assert 'cds-sorenson' not in app.extensions
    ext.init_app(app)
    assert 'cds-sorenson' in app.extensions
示例#2
0
def app(config):
    """Flask application fixture."""
    app_ = Flask('testapp')

    CDSSorenson(app_)

    app_.config.update(config)

    with app_.app_context():
        yield app_
示例#3
0
def test_init():
    """Test extension initialization."""
    app = Flask('testapp')
    ext = CDSSorenson(app)
    assert 'cds-sorenson' in app.extensions

    app = Flask('testapp')
    ext = CDSSorenson()
    assert 'cds-sorenson' not in app.extensions
    ext.init_app(app)
    assert 'cds-sorenson' in app.extensions
示例#4
0
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307, USA.
#
# In applying this license, CERN does not
# waive the privileges and immunities granted to it by virtue of its status
# as an Intergovernmental Organization or submit itself to any jurisdiction.


"""Minimal Flask application example for development."""

from __future__ import absolute_import, print_function

from flask import Flask

from cds_sorenson import CDSSorenson

# Create Flask application
app = Flask(__name__)

CDSSorenson(app)