mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:19:52 +01:00
12 lines
268 B
Ruby
12 lines
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :answer do
|
|
transient do
|
|
question_content { Faker::Lorem.sentence }
|
|
end
|
|
|
|
content { Faker::Lorem.sentence }
|
|
question { FactoryBot.build(:question, content: question_content) }
|
|
end
|
|
end
|