コントローラーの仕様でローカル変数をスタブできない理由について、少し混乱しています。
これが私のコントローラーです:
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
ですか? この場合、どのように変数をスタブしますか?