mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
7 lines
179 B
Ruby
Vendored
7 lines
179 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
Fabricator(:reaction, class_name: "DiscourseReactions::Reaction") do
|
|
post { |attrs| attrs[:post] }
|
|
reaction_type 0
|
|
reaction_value "otter"
|
|
end
|