mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
11 lines
197 B
Ruby
Executable file
11 lines
197 B
Ruby
Executable file
FactoryGirl.define do
|
|
factory :team do
|
|
sequence(:name) { |n| "Team ##{n}" }
|
|
|
|
irc "#team"
|
|
web "http://team.com"
|
|
tag "[TEAM]"
|
|
country "EU"
|
|
comment "We are a team"
|
|
end
|
|
end
|