mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-05-31 00:41:20 +00:00
Purged git history and removed sensitive information.
This commit is contained in:
commit
6bcc8dc76b
862 changed files with 25312 additions and 0 deletions
19
spec/factories/user.rb
Normal file
19
spec/factories/user.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue