Rspec & FactoryGirl acceptance validation
Asked Answered
P

1

7

I've been breaking my head on this easy validation and I can't get it to validate. I've got the following model:

class Attendance < ActiveRecord::Base
  belongs_to :user, counter_cache: true
  belongs_to :event, counter_cache: true

  validates :terms_of_service, :acceptance => true
end

This is my Factory:

  factory :attendance do
    user
    event
    terms_of_service true
  end

This is my test:

  describe "event has many attendances" do
    it "should have attendances" do
      event = FactoryGirl.create(:event)
      user1 = FactoryGirl.create(:user, firstname: "user1", email: "[email protected]")
      user2 = FactoryGirl.create(:user, firstname: "user2", email: "[email protected]")

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

This shouldn't bring up any errors but it does.

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

Failures:

  1) Event event has many attendances should have attendances
     Failure/Error: attendance1 = FactoryGirl.create(:attendance, event: event, user: user1, 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)>'

When i do these actions in my browser and i accept the tos all goes well. What am i missing here?!

Phenomenal answered 3/8, 2012 at 8:15 Comment(0)
B
11

Is :terms_of_service mapped to db column? The default value for validates :acceptance is string "1", not true. If it is mapped to db column, try to add :accept => true to validation:

validates :terms_of_service, :acceptance => {:accept => true}

If the field is not mapped, or DB column is not boolean, try to use "1" instead of true in tests and factories.

Brake answered 3/8, 2012 at 8:29 Comment(2)
Thanks, that was it! I tried everything but a string. Thanks, for the record it was a virtual attribute!Lordan
@Brake Did you ever know that you're my hero? Thanks.Patrilocal

© 2022 - 2024 — McMap. All rights reserved.