ensl.org/spec/factories/topic.rb
Chris Blanchard f20d5294b9 Fix
2015-08-20 15:58:10 +01:00

10 lines
No EOL
210 B
Ruby

FactoryGirl.define do
factory :topic do
sequence(:title) { |n| "Forum Title #{n}" }
forum
user
before(:create) do |topic|
topic.first_post = "My first post on the topic"
end
end
end