retrospring/spec/factories/question.rb
2022-08-20 17:21:47 +02:00

10 lines
193 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :question do
user { nil }
content { Faker::Lorem.sentence }
author_is_anonymous { true }
direct { true }
end
end