discourse/spec/fabricators/topic_fabricator.rb
Sam 89ad2b5900 DEV: Rails 5.2 upgrade and global gem upgrade
This updates tests to use latest rails 5 practice
and updates ALL dependencies that could be updated

Performance testing shows that performance has not regressed
if anything it is marginally faster now.
2018-06-07 14:21:33 +10:00

30 lines
768 B
Ruby

Fabricator(:topic) do
user
title { sequence(:title) { |i| "This is a test topic #{i}" } }
category_id do |attrs|
attrs[:category] ? attrs[:category].id : SiteSetting.uncategorized_category_id
end
end
Fabricator(:deleted_topic, from: :topic) do
deleted_at Time.now
end
Fabricator(:closed_topic, from: :topic) do
closed true
end
Fabricator(:banner_topic, from: :topic) do
archetype Archetype.banner
end
Fabricator(:private_message_topic, from: :topic) do
category_id { nil }
title { sequence(:title) { |i| "This is a private message #{i}" } }
archetype "private_message"
topic_allowed_users { |t| [
Fabricate.build(:topic_allowed_user, user: t[:user]),
Fabricate.build(:topic_allowed_user, user: Fabricate(:coding_horror))
]}
end