internetee-registry/spec/factories/api_user.rb
Artur Beljajev 32ecf36057 Rename users.password to users.plain_text_password
Otherwise it conflicts with Devise
2018-07-13 23:09:21 +03:00

23 lines
556 B
Ruby

FactoryBot.define do
factory :api_user do
sequence(:username) { |n| "test#{n}" }
plain_text_password 'a' * ApiUser.min_password_length
roles ['super']
registrar
factory :api_user_epp do
roles %w(epp static_registrant)
end
factory :api_user_with_unlimited_balance do
transient do
registrar false
end
after :build do |api_user, evaluator|
registrar = (evaluator.registrar || create(:registrar_with_unlimited_balance))
api_user.registrar = registrar
end
end
end
end