我是测试 Rails 应用程序的新手。现在,我正在学习如何模拟方法。
我有在我的用户模型中更改密码的方法:
def change_password(user, pass)
self.update_attributes(user) if self.password_hash == self.encrypt_password(pass)
end
我要做的就是模拟方法 update_attributes。为此,我编写了一个测试:
let (:user) {FactoryGirl.build(:user)}
subject{user}
...
describe "#change_password" do
before {user.save}
context "when old password doesn't match" do
it "should not update password" do
user.should_not_receive(:update_attributes)
user.change_password(user,"invalid")
end
end
end
但是当我运行它时,我收到错误:
NoMethodError:
undefined method `should_not_receive' for #<User:0x0000000455daf8>
另外,我尝试像这样模拟 update_attributes 方法:
user.change_password.should_not_receive(:update_attributes)
我还有另一个错误:
ArgumentError:
wrong number of arguments (0 for 2)
而且我找不到任何关于如何在具有属性的方法中模拟方法的手册。
有人可以帮我解决我的问题吗?