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

12 lines
261 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :comment do
transient do
answer_content { Faker::Lorem.sentence }
end
content { Faker::Lorem.sentence }
answer { FactoryBot.build(:answer, content: answer_content) }
end
end