18 lines
375 B
Ruby
18 lines
375 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
sequence(:email) { |n| "user-#{n}@example.org" }
|
|
|
|
factory :user do
|
|
password { "password" }
|
|
password_confirmation { "password" }
|
|
confirmed_at { Time.now - 15.minutes }
|
|
email
|
|
|
|
factory :administrator do
|
|
admin { true }
|
|
owner { true }
|
|
end
|
|
end
|
|
end
|