discourse/spec/fabricators/topic_fabricator.rb

28 lines
705 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
Fabricator(:topic) do
user
title { sequence(:title) { |i| "This is a test topic #{i}" } }
category_id { SiteSetting.uncategorized_category_id }
2013-02-05 14:16:51 -05:00
end
Fabricator(:deleted_topic, from: :topic) do
2013-02-25 11:42:20 -05:00
deleted_at Time.now
end
2013-02-25 11:42:20 -05:00
Fabricator(:topic_allowed_user) do
2013-02-05 14:16:51 -05:00
end
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
category_id { nil }
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