Hi,

when I call a view with the test client (django.test.client.Client) like, for instance, so:

self.client.post(reverse('lfs_login'), {'action': 'register', 'email': 't...@test.com', 'password_1': 'password', 'password_2': 'password'})

with Django 1.3.1 the session_key of session is set:

        (Pdb) request.session.session_key
        '5ec9fd72978ec4ec4186fe7af59b905f'      

with Django 1.4 it is None:

        (Pdb) request.session.session_key
        (Pdb)

which breaks a lot of of my tests.

Now my questions: Is this by intention? Can I get around that? Has this any meaning for the application in production?

Thanks
Kai







--
You received this message because you are subscribed to the Google Groups "Django 
developers" group.
To post to this group, send email to django-developers@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to