def tearDown(self): db.session.remove() db.drop_all()
def dropdb(): if prompt_bool( "Are you sure you want to lose all your data?"): db.drop_all() print('Dropped the database')