Pregunta

I want to set a cookie when making a request with Rack::MockRequest

cookie = "_session_id=123"
client = Rack::MockRequest.new(@app)

#something like this?
response = client.get("/", "Cookie" => cookie) 

How do I do it?

¿Fue útil?

Solución

try

response = client.get('/', "HTTP_COOKIE" => cookie)
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top