微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – 测试:在anaf中的reject_if

我有一个用户模型
class User < ActiveRecord::Base
  has_many :languages,:dependent => :destroy
  accepts_nested_attributes_for :languages,:reject_if => lambda { |l| l[:name].blank? }
end

我想用RSpec 2.0.0测试reject_if部分.目前我有两个简单的测试用例

it "should not save language without name by accepts_nested_attributes" do
    lambda {
      @user.update_attributes!("languages_attributes"=>{"0"=>{}})
    }.should_not change(Language,:count)
  end

  it "should save language with name by accepts_nested_attributes" do
    lambda {
      @user.update_attributes!("languages_attributes"=>{"0"=>{"name"=>"lang_name"}})
    }.should change(Language,:count).by(1)
  end

但是我对测试很新,看起来很奇怪.
我想知道这是否是测试reject_if的正确方法?有没有更好的方法呢?

解决方法

我看到你要测试reject_if然后最好的方法是直接测试它:
anaf_for_languages = User.nested_attributes_options[:languages]
anaf_for_languages[:reject_if].call({ "name" => "" }).should be_true

如果是,则名称为空.我认为这比你的代码更简洁,但不是那么明显.

原文地址:https://www.jb51.cc/ruby/264512.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐