internetee-registry/spec/factories/api_user.rb
2016-11-29 00:10:32 +02:00

8 lines
153 B
Ruby

FactoryGirl.define do
factory :api_user do
sequence(:username) { |n| "test#{n}" }
password 'a' * 6
roles ['super']
registrar
end
end