def test_redirect_to_redirects_to_same_location_of_redirect_with_route_params(
         self):
     # assert
     assert redirect_to('verify',
                        email="*****@*****.**").location == redirect(
                            url_for('verify',
                                    email="*****@*****.**")).location
 def test_redirect_to_redirects_to_same_location_of_redirect(self):
     # assert
     assert redirect_to('home').location == redirect(url_for('home')).location
 def test_redirect_to_redirects_to_same_location_of_redirect_with_route_params(self):
     # assert
     assert redirect_to('verify', email="*****@*****.**").location == redirect(
         url_for('verify', email="*****@*****.**")).location
 def test_redirect_to_redirects_to_same_location_of_redirect(self):
     # assert
     assert redirect_to('home').location == redirect(
         url_for('home')).location