ensl.org/spec/factories/topic.rb
2015-08-20 15:49:42 +01:00

5 lines
No EOL
99 B
Ruby

FactoryGirl.define do
factory :topic do
sequence(:title) { |n| "Forum Title #{n}" }
end
end