assuming your test works something like this...

class IntegrationTestBase(BaseTestCase):
    def setUp(self):
        self.app = TestApp(self.app)

any calls through self.app.get() / self.app.post() appear to stash
response cookies in app.cookies() ; the same cookies might be viewable
in the response object as well.

you should be able to use the cookie id to read the session manually
through beaker.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en.

Reply via email to