Skip to content

Instantly share code, notes, and snippets.

@cschneid
Forked from gma/gist:36627
Created December 16, 2008 15:28
Show Gist options
  • Save cschneid/36630 to your computer and use it in GitHub Desktop.
Save cschneid/36630 to your computer and use it in GitHub Desktop.
module SpecHelper
def session_data
cookies = @response.headers["Set-Cookie"]
serialised = Rack::Utils::parse_query(cookies)["rack.session"]
Marshal.load(serialised.unpack('m*').first)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment