Skip to content

Instantly share code, notes, and snippets.

@dankozlowski
Created July 1, 2015 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dankozlowski/d72d6b4fa639140c5167 to your computer and use it in GitHub Desktop.
Save dankozlowski/d72d6b4fa639140c5167 to your computer and use it in GitHub Desktop.
# Defines a new sequence
FactoryGirl.define do
sequence :email do |n|
"person#{n}@example.com"
end
end
generate :email
# => "person1@example.com"
generate :email
# => "person2@example.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment