Guest User

Untitled

a guest
Feb 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. module SpecHelper
  2. def session_data
  3. cookies = @response.headers["Set-Cookie"]
  4. serialised = Rack::Utils::parse_query(cookies)["rack.session"]
  5. Marshal.load(serialised.unpack('m*').first)
  6. end
  7. end
Add Comment
Please, Sign In to add comment