2
user
オブジェクトを取得する一連のメソッドがあります。私はcall
方法まで、オブジェクトをモックアップすることができます私のFactory Girl
rspecのメソッドのモッキングチェーン
@current_user = AuthorizeApiRequest.call(request.headers).result
でuser
を返すために、次のことを模擬しようとしていますが、私は私が見つけたresult
方法
allow(AuthorizeApiRequest).to receive(:call).and_return(:user)
この質問は、http://stackoverflow.com/questions/8003445/rspec-stub-chains-with-arguments?rq=1にあります。 –