discourse/spec/fabricators/topic_fabricator.rb

Failed to ignore revisions in .git-blame-ignore-revs.

32 lines
807 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
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
2013-02-05 14:16:51 -05:00
end
Fabricator(:deleted_topic, from: :topic) do
deleted_at { 1.minute.ago }
end
Fabricator(:closed_topic, from: :topic) do
closed true
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
category_id { nil }
title { sequence(:title) { |i| "This is a private message #{i}" } }
2013-02-05 14:16:51 -05:00
archetype "private_message"
2017-07-27 21:20:09 -04:00
topic_allowed_users { |t| [
Fabricate.build(:topic_allowed_user, user: t[:user]),
Fabricate.build(:topic_allowed_user, user: Fabricate(:coding_horror))
2013-02-05 14:16:51 -05:00
]}
end