嗨,我正在尝试通过某种方法通过此 rspec 测试,您好需要帮助。问题是我不知道它在问什么。这是我试图通过的测试。
describe "repeater" do
it "executes the default block" do
block_was_executed = false
repeater do
block_was_executed = true
end
block_was_executed.should == true
end
it "executes the default block 3 times" do
n = 0
repeater(3) do
n += 1
end
n.should == 3
end
it "executes the default block 10 times" do
n = 0
repeater(10) do
n += 1
end
n.should == 10
end
end
我真的不知道我需要做什么才能通过这个测试,因为我真的不知道它在问什么。如果可以用文字解释而无需实际给我代码以使其通过,那就太棒了!