2013-02-05 13:16:51 -06:00
|
|
|
Fabricator(:topic) do
|
|
|
|
user
|
2013-03-11 08:51:24 -05:00
|
|
|
title { sequence(:title) { |i| "This is a test topic #{i}" } }
|
2013-10-23 18:05:51 -05:00
|
|
|
category_id { SiteSetting.uncategorized_category_id }
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-02-16 14:57:16 -06:00
|
|
|
Fabricator(:deleted_topic, from: :topic) do
|
2013-02-25 10:42:20 -06:00
|
|
|
deleted_at Time.now
|
2013-02-16 14:57:16 -06:00
|
|
|
end
|
|
|
|
|
2016-09-09 11:15:56 -05:00
|
|
|
Fabricator(:closed_topic, from: :topic) do
|
|
|
|
closed true
|
|
|
|
end
|
|
|
|
|
2014-06-16 12:21:21 -05:00
|
|
|
Fabricator(:banner_topic, from: :topic) do
|
|
|
|
archetype Archetype.banner
|
|
|
|
end
|
|
|
|
|
2013-02-25 10:42:20 -06:00
|
|
|
Fabricator(:private_message_topic, from: :topic) do
|
2013-02-05 13:16:51 -06:00
|
|
|
user
|
2014-09-11 02:39:20 -05:00
|
|
|
category_id { nil }
|
2013-03-11 08:51:24 -05:00
|
|
|
title { sequence(:title) { |i| "This is a private message #{i}" } }
|
2013-02-05 13:16:51 -06:00
|
|
|
archetype "private_message"
|
2017-07-27 20:20:09 -05:00
|
|
|
topic_allowed_users { |t| [
|
2017-04-26 22:53:53 -05:00
|
|
|
Fabricate.build(:topic_allowed_user, user: t[:user]),
|
|
|
|
Fabricate.build(:topic_allowed_user, user: Fabricate(:coding_horror))
|
2013-02-05 13:16:51 -06:00
|
|
|
]}
|
|
|
|
end
|