def createuser(password, email): """ create a new user """ passwd = bcrypt.hashpw(password, bcrypt.gensalt()) with app.test_request_context(): create_user(passwd, email)
def initdb(): """ create all database tables """ with app.test_request_context(): db.create_all()
def dropdb(): """ drops all database tables """ with app.test_request_context(): db.drop_all()