Skip to content

Instantly share code, notes, and snippets.

@mafis
Created March 28, 2011 20:38
Show Gist options
  • Select an option

  • Save mafis/891224 to your computer and use it in GitHub Desktop.

Select an option

Save mafis/891224 to your computer and use it in GitHub Desktop.
Factory.sequence :email do |n|
"email#{n}@factory.com"
end
Factory.define :user do |a|
a.email { Factory.next(:email)}
a.password "1234567890"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment