15 lines
336 B
Ruby
15 lines
336 B
Ruby
FactoryBot.define do
|
|
sequence(:instructeur_email) { |n| "inst#{n}@inst.com" }
|
|
|
|
factory :instructeur do
|
|
email { generate(:instructeur_email) }
|
|
|
|
transient do
|
|
password { 'somethingverycomplated!' }
|
|
end
|
|
|
|
initialize_with do
|
|
User.create_or_promote_to_instructeur(email, password).instructeur
|
|
end
|
|
end
|
|
end
|