def createdb():
    """ Creates a database with all of the tables defined in
        your Alchemy models
    """

    db.create_all()
 def setup(self):
     app = create_app('hearthstone.settings.DevConfig', env='dev')
     self.app = app.test_client()
     db.app = app
     db.create_all()