def dropdb(): """ drops all database tables """ with app.test_request_context(): db.drop_all()
def tearDown(self): db.session.remove() db.drop_all()