internetee-registry/spec/fabricators/api_user_fabricator.rb
2015-05-20 19:58:00 +03:00

14 lines
339 B
Ruby

# default fabricator should be reusable
Fabricator(:api_user) do
username { sequence(:username) { |i| "username#{i}" } }
password 'ghyt9e4fu'
identity_code '14212128025'
registrar
active true
roles ['super']
end
# use dedicated fabricator for fixed one
Fabricator(:gitlab_api_user, from: :api_user) do
username 'gitlab'
end