ensl.org/spec/factories/topic.rb
2020-03-15 15:33:58 +02:00

10 lines
211 B
Ruby

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