Hello all,
Thank you for your work !!
I am using factory girl with this code :
class User < ActiveRecord::Base
serialize :right_edit
....
end
and also
Factory.define :user do |f|
f.name 'Roger'
f.login 'toutou'
f.email "
ro...@mlk.com"
f.password "foobar"
f.password_confirmation { |u| u.password }
f.right_read ["FR"]
end
It doesn't work when I want to get the right_read value in my test ..
Do you know if you support seralize method with factory girl ??
Best
Antoine