2020-04-20 23:03:57 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :question do
|
|
|
|
user { nil }
|
|
|
|
content { Faker::Lorem.sentence }
|
|
|
|
author_is_anonymous { true }
|
2022-08-20 17:07:37 +02:00
|
|
|
direct { true }
|
2020-04-20 23:03:57 +02:00
|
|
|
end
|
|
|
|
end
|