在RSpec中测试实例方法时,没有读取我的空数组参数


describe "changes shopping array length" do
subject { described_class.new.change_array_length(group: [], num: 2) }
it "by responding to a method with arguments" do
expect(subject).to respond_to(:change_array_length).with(2).arguments
end

这是我迄今为止所写的。然而,当我运行测试时,我得到:

Failure/Error:
def change_array_length(group, num)
group << num
end

ArgumentError:
wrong number of arguments (given 1, expected 2)

我删除了num参数,参数的数量减少到0,所以它不会读取空数组。

我刚刚开始学习一门使用Ruby而不是RoR的课程的测试,所以如果我在用参数测试方法时有点错误,请告诉我!

谢谢!

基于验证responsd_to的期望,subject应该是所描述类的实例,而不是方法调用。

describe "changes shopping array length" do
subject { described_class.new }
it "by responding to a method with arguments" do
expect(subject).to respond_to(:change_array_length).with(2).arguments
end
end

另外,根据您的方法定义,方法似乎不使用命名参数,但当您调用主题时,您将作为命名参数传递,@Aarthi在她的回答中提到了这一点。

subject { described_class.new.change_array_length([], 2) }

您使用的命名参数将被视为哈希(单个参数(。像方法中定义的未命名参数一样传递。

相关内容

  • 没有找到相关文章

最新更新