def test_stores_password_correctly():
    user = User()
    user.hash_password("password")
    assert user.verify_password("password")