Retrospring/spec/factories/inbox.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
144 B
Ruby
Raw Normal View History

2020-04-28 13:13:19 -07:00
# frozen_string_literal: true
FactoryBot.define do
factory :inbox do
question { FactoryBot.build(:question) }
new { true }
end
end