2013-02-06 03:16:51 +08:00
|
|
|
Fabricator(:topic) do
|
|
|
|
user
|
|
|
|
title { sequence(:title) { |i| "Test topic #{i}" } }
|
|
|
|
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
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
Fabricator(:topic_allowed_user) do
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
Fabricator(:private_message_topic, from: :topic) do
|
2013-02-06 03:16:51 +08:00
|
|
|
user
|
|
|
|
title { sequence(:title) { |i| "Private Message #{i}" } }
|
|
|
|
archetype "private_message"
|
2013-02-26 00:42:20 +08:00
|
|
|
topic_allowed_users{|t| [
|
|
|
|
Fabricate.build(:topic_allowed_user, user_id: t[:user].id),
|
2013-02-06 03:16:51 +08:00
|
|
|
Fabricate.build(:topic_allowed_user, user_id: Fabricate(:coding_horror).id)
|
|
|
|
]}
|
|
|
|
end
|