mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-22 18:57:48 +01:00
6 lines
168 B
Ruby
6 lines
168 B
Ruby
FactoryBot.define do
|
|
factory :answer do |u|
|
|
u.sequence(:content) { |n| "This is an answer. I'm number #{n}!" }
|
|
u.user { FactoryBot.create(:user) }
|
|
end
|
|
end
|