Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to populate some fake data into a factory using the Faker gem:

Factory.define :user do |user|
  user.first_name Faker::Name::first_name
  user.last_name Faker::Name::last_name
  user.sequence(:email) {|n| "user#{n}@blow.com" }
end

However while I expect this to produce users who have different first_name and last_names, each one is the same:

>> Factory(:user)
=> #<User id: 16, email: "user7@blow.com", created_at: "2011-03-18 18:29:33",     
updated_at: "2011-03-18 18:29:33", first_name: "Bailey", last_name: "Durgan">
>> Factory(:user)
=> #<User id: 17, email: "user8@blow.com", created_at: "2011-03-18 18:29:39", 
updated_at: "2011-03-18 18:29:39", first_name: "Bailey", last_name: "Durgan">

How can I get the Faker gem to generate new names for each users and not just reuse the original ones?

share|improve this question
Just a shot in the dark, but have you tried using something like user.sequence(:first_name} {|n| Faker::Name::first_name}? FactoryGirl is likely just evaluating your Faker call when it loads your "fixtures". Using the sequence param,&block method should prevent that. – Steven Xu Mar 18 '11 at 18:45

1 Answer

up vote 27 down vote accepted

try putting brackets around the fakers. see this link

share|improve this answer
1  
I love stackoverflow so much - thank you Will, you saved my bacon – Peter Nixey Mar 18 '11 at 19:00
Thank you, this fixed my issue! – Oranges13 Mar 7 '12 at 13:47
1  
Why, why, why? What is going on here? – jordanpg Aug 9 '12 at 22:44
because of "lazy attribute", see: github.com/thoughtbot/factory_girl/blob/master/… – Siwei Shen Dec 21 '12 at 5:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.