Fixed admin login spects

This commit is contained in:
Priit Tark 2015-05-20 17:58:07 +03:00
parent 9a20c73a40
commit 77d6ab93ce
13 changed files with 30 additions and 15 deletions

View file

@ -3,6 +3,7 @@
Fabricator(:admin_user) do
username 'gitlab'
password 'ghyt9e4fu'
password_confirmation 'ghyt9e4fu'
email 'info@gitlab.eu'
country_code 'FI'
roles ['admin']
@ -11,6 +12,9 @@ end
Fabricator(:ee_user, from: :admin_user) do
identity_code "45002036517"
country_code 'EE'
username 'user1'
password 'testtest'
password_confirmation 'testtest'
roles ['admin']
end