mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-08 05:03:36 +01:00
9 lines
170 B
Ruby
9 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
|