Skip to content

Instantly share code, notes, and snippets.

@domagude
Created October 19, 2017 13:01
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 domagude/9c78b1891b0663856fd456fa47e669b5 to your computer and use it in GitHub Desktop.
Save domagude/9c78b1891b0663856fd456fa47e669b5 to your computer and use it in GitHub Desktop.
FactoryGirl.define do
factory :user do
sequence(:name) { |n| "test#{n}" }
sequence(:email) { |n| "test#{n}@test.com" }
password '123456'
password_confirmation '123456'
end
end
@kaibrabo
Copy link

password { '123456' }
password_confirmation { '123456' }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment