2020-04-30 10:04:20 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
2022-03-26 10:38:17 -07:00
|
|
|
factory :smile, class: Appendable::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(:answer) }
|
|
|
|
content { "🙂" }
|
2020-04-30 10:04:20 -07:00
|
|
|
end
|
|
|
|
end
|