mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 07:56:03 +01:00
8 lines
160 B
Ruby
8 lines
160 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :smile do
|
|
user { FactoryBot.build(:user) }
|
|
answer { FactoryBot.build(:answer) }
|
|
end
|
|
end
|