下面是我的model
方法,它接受一个 id 和auth
令牌。
Project.find( id: '22', authorization: auth)
下面是我的测试。
require 'project'
RSpec.describe Project do
it 'finds an project' do
project = class_double("project")
expect(project).to receive(:find).with()
// How can i send id and authorization inside with
end
end
我怎样才能this test pass
通过传递id
和authorization
内部with
?