我想通过各种可用方法检查模型是否持久保存到DB。看起来所有这些事情都遵循.save,但我很好奇是否有更好的方法,也许使用Dirty提供的东西?
答案 0 :(得分:21)
检查是否创建了新记录的一种方法:
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")
这就是你的意思吗?