retrospring/spec/factories/comment_smile.rb
2020-05-01 10:17:05 +02:00

8 lines
170 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :comment_smile do
user { FactoryBot.build(:user) }
comment { FactoryBot.build(:comment) }
end
end