Skip to content

Instantly share code, notes, and snippets.

@dawidlenkiewicz
Created July 30, 2014 11:26
Show Gist options
  • Save dawidlenkiewicz/89cc177067f7c7795234 to your computer and use it in GitHub Desktop.
Save dawidlenkiewicz/89cc177067f7c7795234 to your computer and use it in GitHub Desktop.
FactoryGirl.define do
factory :client_person do
first_name "Joe"
sequence(:last_name) { |n| "Doe#{n}" }
pesel { Pesel::EXAMPLE_Pesels[ClientPerson.count] }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment