Try to add rspec tests to my App and have following error:
NoMethodError: undefined method `cookies' for #
Here is my simple code:
get :my_action, params: { id: @request.id }
expect(response.status).to eq(200)
But I do not use anywhere cookies in my App project. And why 'coockies' try to executes for my Request model object? What could it be?
PS Request - it is my model (has :title, :description)