mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:19:52 +01:00
9 lines
221 B
Ruby
9 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :comment_smile, class: Appendable::Reaction do
|
|
user { FactoryBot.build(:user) }
|
|
parent { FactoryBot.build(:comment) }
|
|
content { "🙂" }
|
|
end
|
|
end
|