Skip to content

Instantly share code, notes, and snippets.

@captproton
Created September 11, 2009 20:21
Show Gist options
  • Save captproton/185539 to your computer and use it in GitHub Desktop.
Save captproton/185539 to your computer and use it in GitHub Desktop.
Factory.define :user do |f|
f.sequence(:username) { |n| "user#{n}" }
f.sequence(:email) { |n| "foo#{n}@example.com" }
f.password "MyStringMyStringMyStringMyString"
f.password_confirmation { |u| u.password }
f.invitation_id "298486374"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment