ensl.org/spec/factories/topic.rb
Chris Blanchard 8074f0c3aa Style fix
2015-08-20 16:35:25 +01:00

10 lines
212 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