Retrospring/spec/factories/comment_smile.rb

9 lines
170 B
Ruby
Raw Normal View History

2020-04-30 10:04:20 -07:00
# frozen_string_literal: true
FactoryBot.define do
factory :comment_smile do
user { FactoryBot.build(:user) }
comment { FactoryBot.build(:comment) }
end
end