这是我试图通过的规范:
context "when validating format of attributes" do
it { should validate_numericality_of(:price).greater_than_or_equal_to(0.01) }
end
我已经安装了rspec
。shoulda-matchers
但我得到了更大的undefined method
_than_or_equal_to'`
现在该方法不在文档中,但它确实存在于此处:
https://github.com/moffff/should-matchers/commit/7da06487d25c27d59d11fb7f2962e7ff345e45c4
那么为什么这不起作用呢?我应该怎么做才能让它工作?