class ActionController::TestSession

def initialize(session = {})

def initialize(session = {})
  super(nil, nil)
  @id = Rack::Session::SessionId.new(SecureRandom.hex(16))
  @data = stringify_keys(session)
  @loaded = true
end