FactoryGirl won't set my protected attribute user.confirmed
. What's the best practice here?
Factory.define :user do |f|
f.name "Tim" # attr_accessible -- this works
f.confirmed true # attr_protected -- doesn't work
end
I can do a @user.confirmed = true
after using my factory, but that's a lot of repetition across a lot of tests.
after(:create)
. See getting started guide – Uptown