RSPEC - PUT 请求 return 错误 405

RSPEC - PUT request return error 405

我有这个测试

describe 'PUT #start' do
  before do
    put :start, abtest_id: @variation.abtest.id.to_s,
                variation_id: @variation.id.to_s, format: 'json'
  end

  it "shoud return HTTP 200 status code" do
    expect(response.response_code).to eql(200)
  end
end

这是回复

Failure/Error: expect(response.response_code).to eql(200)

   expected: 200
        got: 405

   (compared using eql?)

我无法使用 rspec 发出放置请求。有人会有其他方法来测试它吗?

405 表示 'Method Not Allowed',例如端点接受 POST 请求但不接受 PUT 请求。

没有看到实现,就不可能知道问题是在规范中还是在被测试的端点中。