mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
19 lines
306 B
Ruby
19 lines
306 B
Ruby
|
FactoryGirl.define do
|
||
|
sequence :username do |n|
|
||
|
"Player#{n}"
|
||
|
end
|
||
|
|
||
|
sequence :email do |n|
|
||
|
"player#{n}@ensl.org"
|
||
|
end
|
||
|
|
||
|
factory :user do
|
||
|
username
|
||
|
email
|
||
|
firstname "ENSL"
|
||
|
lastname "Player"
|
||
|
steamid "0:1:23456789"
|
||
|
country "EU"
|
||
|
raw_password "PasswordABC123"
|
||
|
end
|
||
|
end
|