mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 19:53:36 +01:00
9 lines
144 B
Ruby
9 lines
144 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :inbox do
|
||
|
question { FactoryBot.build(:question) }
|
||
|
new { true }
|
||
|
end
|
||
|
end
|