ruby-on-rails-3 – 如何使用Rspec Rails3测试acceptance_nested_attributes_for?

我有一个模型如下:
class Greeting < ActiveRecord::Base

  attr_accessible :headline,:icon,:content

  belongs_to :user


  accepts_nested_attributes_for :user,:reject_if => proc { |a| a[:name].blank? || a[:email].blank? }

我该如何进行Rspec测试?

解决方法

在这里,您有Shoulda宏用于测试acceptance_nested_attributes_for: http://mediumexposure.com/testing-acceptsnestedattributesfor-shoulda-macros/.它不支持任何选项(如:reject_if),只有bare acceptance_nested_attributes_for.

但是对于:reject_if,您可以为User创建一个带有嵌套属性的有效Greeting模型,但不包含:name.然后检查用户是否已保存,然后与空白:电子邮件一样

所以你可以这样做:

describe Greeting
  it { expect { Factory(:greeting,:user_attributes => Factory_attributes_for(:user)) }.to change(User,:count).by(1) }
  it { expect { Factory(:greeting,:user_attributes => Factory_attributes_for(:user,:name => '')) }.to_not change(User,:count) }
  it { expect { Factory(:greeting,:user_attributes => Factory.attributes_for(:user,:email => '')) }.to_not change(User,:count) }
end

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...