Skip to content

Instantly share code, notes, and snippets.

@dankozlowski
Created July 1, 2015 05:37
Show Gist options
  • 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
# => "[email protected]"
generate :email
# => "[email protected]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment