gpt4 book ai didi

ruby-on-rails - Rspec 检查 ActiveModel::Errors

转载 作者:行者123 更新时间:2023-12-04 18:19:15 26 4
gpt4 key购买 nike

有没有更好的方法来编写这个规范?这个作品但是 我不喜欢我必须调用 f.valid? 的事实。让 f.errors 填充。

it "fails to save the record because the name is blank" do
f = Foo.new
f.valid?
f.errors.include?(:name).should be_true
end

最佳答案

it "fails to save the record because the name is blank" do
Foo.create.errors.should include :name
end

关于ruby-on-rails - Rspec 检查 ActiveModel::Errors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11025205/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com