def drop_db(): """ Drops a database with all of the tables defined in your Alchemy models """ db.drop_all()
def tearDown(self): db.session.remove() db.drop_all()