Files
invenio-theme-iform/tests/test_invenio_theme_tugraz.py
Mojib 47fd19c571 frontpage draft
views.py is rendering index.html which is / endpoint, which is the frontpage. config.py is disabling the default frontpage from invenio-app-rdm.
2020-07-13 13:16:00 +02:00

40 lines
992 B
Python

# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 mojib wali.
#
# invenio-theme-tugraz is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
# details.
"""Module tests."""
from flask import Flask
from invenio_theme_tugraz import inveniothemetugraz
def test_version():
"""Test version import."""
from invenio_theme_tugraz import __version__
assert __version__
def test_init():
"""Test extension initialization."""
app = Flask('testapp')
ext = inveniothemetugraz(app)
assert 'invenio-theme-tugraz' in app.extensions
app = Flask('testapp')
ext = inveniothemetugraz()
assert 'invenio-theme-tugraz' not in app.extensions
ext.init_app(app)
assert 'invenio-theme-tugraz' in app.extensions
# def test_view(base_client):
# """Test view."""
# res = base_client.get("/")
# assert res.status_code == 200
# assert 'Welcome to invenio-theme-tugraz' in str(res.data)