mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
10 lines
255 B
Ruby
10 lines
255 B
Ruby
FactoryBot.define do
|
|
factory :admin_user do
|
|
username 'test'
|
|
sequence(:email) { |n| "test#{n}@test.com" }
|
|
password 'a' * AdminUser.min_password_length
|
|
password_confirmation { password }
|
|
country_code 'de'
|
|
roles ['admin']
|
|
end
|
|
end
|