mirror of
https://github.com/discourse/discourse-solved.git
synced 2025-11-09 19:08:40 +00:00
7 lines
174 B
Ruby
7 lines
174 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
Fabricator(:solved_topic, from: DiscourseSolved::SolvedTopic) do
|
||
|
|
topic
|
||
|
|
answer_post { Fabricate(:post) }
|
||
|
|
accepter { Fabricate(:user) }
|
||
|
|
end
|