mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
15 lines
333 B
Ruby
15 lines
333 B
Ruby
FactoryGirl.define do
|
|
factory :user do
|
|
sequence(:email) { |n| "user_#{n}@example.com" }
|
|
password 'password'
|
|
password_confirmation { password }
|
|
first_name 'Michael'
|
|
last_name 'Scott'
|
|
end
|
|
|
|
# factory :team do
|
|
# sequence(:name) { |n| "mash it #{n} times" }
|
|
# association :captain, :factory => :user
|
|
# end
|
|
end
|