parent
029a32decd
commit
c6a49db3c2
@ -1,19 +0,0 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from flask.ext.testing import TestCase |
||||
from {{ cookiecutter.app_name }}.settings import TestConfig |
||||
from {{ cookiecutter.app_name }}.app import create_app |
||||
from {{ cookiecutter.app_name }}.database import db |
||||
|
||||
|
||||
class DbTestCase(TestCase): |
||||
"""Base TestCase for tests that require a database.""" |
||||
|
||||
def create_app(self): |
||||
app = create_app(TestConfig) |
||||
with app.app_context(): |
||||
db.create_all() |
||||
return app |
||||
|
||||
def tearDown(self): |
||||
db.session.remove() |
||||
db.drop_all() |
Loading…
Reference in new issue