ensl.org/spec/factories/topic.rb

11 lines
212 B
Ruby
Raw Normal View History

2015-08-20 14:49:42 +00:00
FactoryGirl.define do
factory :topic do
2015-08-22 09:48:08 +00:00
sequence(:title) { |n| "Topic Title #{n}" }
2015-08-20 14:58:10 +00:00
forum
user
before(:create) do |topic|
2015-08-20 15:35:25 +00:00
topic.first_post = "My first post on the topic"
2015-08-20 14:58:10 +00:00
end
2015-08-20 14:49:42 +00:00
end
2015-08-20 15:35:25 +00:00
end