retrospring/spec/factories/question.rb
2020-04-20 23:13:24 +02:00

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