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

ruby-on-rails – Rspec和FactoryGirl验收验证

我一直在试着这个简单的验证,我无法让它验证.我有以下型号:
class Attendance < ActiveRecord::Base
  belongs_to :user,counter_cache: true
  belongs_to :event,counter_cache: true

  validates :terms_of_service,:acceptance => true
end

这是我的工厂:

factory :attendance do
    user
    event
    terms_of_service true
  end

这是我的测试:

describe "event has many attendances" do
    it "should have attendances" do
      event = FactoryGirl.create(:event)
      user1 = FactoryGirl.create(:user,firstname: "user1",email: "mail@user2.nl")
      user2 = FactoryGirl.create(:user,firstname: "user2",email: "mail@user1.nl")

      attendance1 = FactoryGirl.create(:attendance,event: event,user: user1,terms_of_service: true)    
    end
  end

这不应该带来任何错误,但确实如此.

Running spec/models/workshop_spec.rb
.............F

Failures:

  1) Event event has many attendances should have attendances
     Failure/Error: attendance1 = FactoryGirl.create(:attendance,terms_of_service: true)
     ActiveRecord::RecordInvalid:
       Validation Failed: Terms of service must be accepted
     # ./spec/models/event_spec.rb:33:in `block (3 levels) in <top (required)>'

当我在浏览器中执行这些操作时,我接受了一切顺利.我在这里缺少什么?!

解决方法

是:terms_of_service映射到db列? validates的认值:acceptance是字符串“1”,不是true.
如果它映射到db列,请尝试添加:accept =>验证是真的:
validates :terms_of_service,:acceptance => {:accept => true}

如果字段未映射,或者DB列不是布尔值,请尝试在测试和工厂中使用“1”而不是true.

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

相关推荐