作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想检查模型是否通过各种可用方法持久化到数据库中。看起来所有这些事情都遵循.save,但是我很好奇是否有更好的方法,也许使用Dirty提供的功能?
最佳答案
检查是否创建了新记录的一种方法:
expect {
MyModel.do_something_which_should_create_a_record
}.to change(MyModel, :count).by(1)
my_model.do_something_which_updates_field
my_model.reload.field.should == "expected value"
expect
和
change
:
my_model = MyModel.find(1)
expect {
my_model.do_something
}.to change { my_model.field }.from("old value").to("expected value")
关于ruby-on-rails - Rspec/Rails匹配器,模型to_be_saved除外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5128976/
我是一名优秀的程序员,十分优秀!