2020-04-30 10:04:20 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
2023-10-25 20:54:48 -07:00
|
|
|
factory :comment_smile, class: Reaction do
|
2020-04-30 10:04:20 -07:00
|
|
|
user { FactoryBot.build(:user) }
|
2022-03-26 10:38:17 -07:00
|
|
|
parent { FactoryBot.build(:comment) }
|
|
|
|
content { "🙂" }
|
2020-04-30 10:04:20 -07:00
|
|
|
end
|
|
|
|
end
|