mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
14 lines
No EOL
211 B
Ruby
14 lines
No EOL
211 B
Ruby
FactoryGirl.define do
|
|
sequence :name do |n|
|
|
"Team ##{n}"
|
|
end
|
|
|
|
factory :team do
|
|
name
|
|
irc "#team"
|
|
web "http://team.com"
|
|
tag "[TEAM]"
|
|
country "EU"
|
|
comment "We are a team"
|
|
end
|
|
end |