Hi, >From a testcase I first issue a 'get' request to a view (say view1) where I set a request.session['m_key'] = 'myval'. Now I issue a 'post' request to a view (say view2). In view2, I tried to obtain request.session['m_key'] but I get an error that session does not have 'm_key' key.
Both these requests are done from the same test case. Here are the some snippets: -- tests def test_login(self): # a get request response = self.client.get('/auth/') # a post request response = self.client.post('/auth/login/',{'hello' : 'world' } ) -- views def index(request): request.session['m_key'] = 'm_var' def login(request): print request.session['m_key'] # I have tested it against 0.96.2 as well as the trunk; both fail although I can see that the client.py in these versions is quite different. Would appreciate any help in this regards Thanks Kapil --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---