Created
April 29, 2013 14:19
-
-
Save lbjay/5481851 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_user_logged_in_cookie_1(self): | |
"""test that if the user is logged in and the cookies are not right, some new cookies are sent back""" | |
print "between here" | |
with self.app.test_client() as c: | |
with c.session_transaction() as sess: | |
sess['user_id'] = u'4d2203d39f' | |
sess['_fresh'] = True | |
resp = c.get('/') | |
#print resp.headers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment