Retrospring/spec/factories/comment_smile.rb

10 lines
221 B
Ruby
Raw Normal View History

2020-04-30 10:04:20 -07:00
# frozen_string_literal: true
FactoryBot.define do
factory :comment_smile, class: Appendable::Reaction do
2020-04-30 10:04:20 -07:00
user { FactoryBot.build(:user) }
parent { FactoryBot.build(:comment) }
content { "🙂" }
2020-04-30 10:04:20 -07:00
end
end