factory_girl
https://github.com/thoughtbot/factory_girl
Ruby
A library for setting up Ruby objects as test data.
FactoryGirl::DefinitionProxy#sequence
Adds an attribute that will have unique values generated by a sequence with
a specified format.
The result of:
factory :user do
sequence(:email) { |n| "person#{n}@example.com" }
end
Is equal to:
sequence(:email) { |n| "person#{n}@example.com" }
factory :user do
email { FactoryGirl.generate(:email) }
end
Except that no globally available sequence will be defined.Edit
git clone [email protected]:thoughtbot/factory_girl.git
cd factory_girl
open lib/factory_girl/definition_proxy.rb
Contribute
# Make a new branchgit checkout -b -your-name--update-docs-FactoryGirl--DefinitionProxy-sequence-for-pr
# Commit to gitgit add lib/factory_girl/definition_proxy.rbgit commit -m "better docs for FactoryGirl::DefinitionProxy#sequence"
# Open pull requestgem install hub # on a mac you can `brew install hub`
hub fork
git push <your name> -your-name--update-docs-FactoryGirl--DefinitionProxy-sequence-for-pr
hub pull-request
# Celebrate!