mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-22 18:47:47 +01:00
6 lines
162 B
Ruby
6 lines
162 B
Ruby
FactoryBot.define do
|
|
factory :question do |u|
|
|
u.sequence(:content) { |n| "#{QuestionGenerator.generate}#{n}" }
|
|
u.author_is_anonymous { true }
|
|
end
|
|
end
|