mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 08:06:04 +01:00
9 lines
173 B
Ruby
9 lines
173 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :question do
|
|
user { nil }
|
|
content { Faker::Lorem.sentence }
|
|
author_is_anonymous { true }
|
|
end
|
|
end
|