Skip to content

Instantly share code, notes, and snippets.

@brandon-beacher
Created September 28, 2011 14:17
Show Gist options
  • Save brandon-beacher/1248051 to your computer and use it in GitHub Desktop.
Save brandon-beacher/1248051 to your computer and use it in GitHub Desktop.
Factory.define :user do |user|
f.sequence(:email) { |n| "user#{n}@example.com" }
end
> Factory.create(:user)
=> #<User id: 1, email: "[email protected]">
> Factory.create(:user)
=> #<User id: 2, email: "[email protected]">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment