Fixtures, factories, ... etc don't execute the real create()
method. For instance, when an user is created, I generate a Preference object for him. But with fixtures I have to do it manually.
So could I do it with a script like all of my `User.create(:name => 'joe')? Or is there a popular gem who do that?
Thanks.