yield to a block using rr

送分小仙女□ 提交于 2019-12-20 04:12:02

问题


I'm trying to test the following code using rr:

response = RestClient.get(url, {:params => params}){|response, request, result| response }

In vanilla rspec, you would do something like this:

RestClient.should_receive(:get).with(url, {:params => params}).and_yield(response, request, result)

How would I do the same with rr?

Setup:

let(:url) { "http://localhost/" }
let(:params) { {:item_id => 1234, :n => 5} }
let(:response) { Object.new }
let(:request) { Object.new }
let(:result) { Object.new }

I've tried a bunch of variations on:

mock(RestClient).get(url, {:params => params}) { response, request, result }

and

mock(RestClient).get(url, {:params => params}, &proc/lambda{}).return(result)

and

mock(RestClient).get(url, {:params => params}).yields(response, request, result)

and

mock(RestClient).get(url, {:params => params}).returns do |proc_as_block|
  response
end

but none of them work.


回答1:


Finally got it. This pull request helped: https://github.com/btakita/rr/pull/82

mock(RestClient).get(url, {:params => params}).yields(response, request, result) { response }


来源:https://stackoverflow.com/questions/15030235/yield-to-a-block-using-rr

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!