Retrospring/spec/factories/inbox_entry.rb

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

9 lines
150 B
Ruby
Raw Normal View History

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