我正在为我的一个控制器写出测试,该控制器接收外部服务的请求.到目前为止,这是我的考验:
describe ApplyController do context 'when valid' do let(:parameters) do file = File.join File.dirname(__FILE__),'..','samples','Indeed.json' JSON.parse(File.read file) end let(:signature) { 'GC02UVj0d4bqa5peNFHdPQAZ2BI=' } subject(:response) { post :indeed,parameters,'X-Indeed-Signature' => signature } it 'returns 200 ok if Request is valid' do expect(response.status).to eq 200 end end end
这应该按照documentation可以find工作.
我的控制器现在看起来像这样:
class ApplyController < Application Controller def indeed binding.pry end end
当我在测试中进入Pry,并尝试检查request.headers的值[‘X-Indeed-Signature’]我总是没有
有没有我失踪的东西?我使用的是Rails 3.2和Rspec 3