retrospring/spec/factories/answers.rb

7 lines
168 B
Ruby
Raw Normal View History

2020-04-19 17:27:42 +02:00
FactoryBot.define do
2015-01-18 14:15:21 +01:00
factory :answer do |u|
u.sequence(:content) { |n| "This is an answer. I'm number #{n}!" }
2020-04-19 17:27:42 +02:00
u.user { FactoryBot.create(:user) }
2015-01-18 14:15:21 +01:00
end
end