我只是有点困惑为什么我不能在我的控制器规范中存根局部变量。
这是我的控制器:
Class UsersController < ApplicationController
...
def get_company
resp = Net::HTTP.get("http://get_company_from_user_id.com/#{params[:id]}.json")
@resp = JSON.parse(resp.body)
...
我的规格看起来像:
class ResponseHelper
def initialize(body)
@body = body
end
end
describe "Get company" do
it "returns successful response" do
stub_resp_body = '{"company": "example"}'
stub_resp = ResponseHelper.new(stub_resp_body)
controller.stub!(:resp).and_return(stub_resp)
get :get_company, {:id => @test_user.id}
expect(response.status).to eq(200)
end
end
我仍然收到一条错误消息:
Errno::ECONNREFUSED:
Connection refused - connect(2)
我究竟做错了什么?如果我正在对resp
变量进行存根,为什么它仍在尝试执行 HTTP 请求,resp
在这种情况下我将如何对变量进行存根?