Source code for flask_diamond.mixins.testing

# -*- coding: utf-8 -*-
# Flask-Diamond (c) Ian Dennis Miller

from flask import current_app
from .. import create_app, db
from flask.ext.testing import TestCase

# intended to be used with flask.ext.testing.TestCase


[docs]class DiamondTestCaseMixin(TestCase):
[docs] def create_app(self): """ Create a Flask-Diamond app for testing. """ app = create_app() app.config['TESTING'] = True app.config['WTF_CSRF_ENABLED'] = False return app
[docs] def setUp(self): """ Prepare for a test case. """ db.create_all() current_app.logger.debug("setup complete")
[docs] def tearDown(self): """ Clean up after a test case. """ db.session.remove() db.drop_all()

Topic Navigation

Version