ensl.org/spec/factories/team.rb
Luke Barratt 704a6b4e9b Changed newrelic configuration to load from environment variables
Changed login field text
Changed database configuration connection pool size to be configured via dotenv
Use a single BBcode parser library
Added better translations coverage
Code formatting
Increases maximum article text limit
Added database cleaner with the deletion strategy during testing
2014-03-30 20:50:52 +01:00

11 lines
No EOL
200 B
Ruby

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