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