2013-02-05 14:16:51 -05:00
|
|
|
Fabricator(:topic) do
|
|
|
|
user
|
2013-03-11 09:51:24 -04:00
|
|
|
title { sequence(:title) { |i| "This is a test topic #{i}" } }
|
2013-10-23 19:05:51 -04:00
|
|
|
category_id { SiteSetting.uncategorized_category_id }
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-16 15:57:16 -05:00
|
|
|
Fabricator(:deleted_topic, from: :topic) do
|
2013-02-25 11:42:20 -05:00
|
|
|
deleted_at Time.now
|
2013-02-16 15:57:16 -05:00
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
Fabricator(:topic_allowed_user) do
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-06-16 13:21:21 -04:00
|
|
|
Fabricator(:banner_topic, from: :topic) do
|
|
|
|
archetype Archetype.banner
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
Fabricator(:private_message_topic, from: :topic) do
|
2013-02-05 14:16:51 -05:00
|
|
|
user
|
2013-03-11 09:51:24 -04:00
|
|
|
title { sequence(:title) { |i| "This is a private message #{i}" } }
|
2013-02-05 14:16:51 -05:00
|
|
|
archetype "private_message"
|
2013-02-25 11:42:20 -05:00
|
|
|
topic_allowed_users{|t| [
|
|
|
|
Fabricate.build(:topic_allowed_user, user_id: t[:user].id),
|
2013-02-05 14:16:51 -05:00
|
|
|
Fabricate.build(:topic_allowed_user, user_id: Fabricate(:coding_horror).id)
|
|
|
|
]}
|
|
|
|
end
|