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