Skip to content

Instantly share code, notes, and snippets.

@lbjay
Created April 29, 2013 14:19
Show Gist options
  • Save lbjay/5481851 to your computer and use it in GitHub Desktop.
Save lbjay/5481851 to your computer and use it in GitHub Desktop.
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