retrospring/spec/factories/inbox.rb
2020-04-28 22:13:19 +02:00

8 lines
144 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :inbox do
question { FactoryBot.build(:question) }
new { true }
end
end