blob: 09a10b633ba0ab9e2dc4576a3a75fa131fd56084 (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
FactoryBot.define do
factory :hierarchy_restriction, class: 'WorkItems::HierarchyRestriction' do
parent_type { association :work_item_type, :default }
child_type { association :work_item_type, :default }
end
end
|