retrospring/spec/factories/inbox_entry.rb

9 lines
150 B
Ruby
Raw Permalink Normal View History

2020-04-28 22:13:19 +02:00
# frozen_string_literal: true
FactoryBot.define do
2024-01-27 12:57:09 +01:00
factory :inbox_entry do
2020-04-28 22:13:19 +02:00
question { FactoryBot.build(:question) }
new { true }
end
end