10 lines
179 B
Ruby
10 lines
179 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :dependency_proxy_group_setting, class: 'DependencyProxy::GroupSetting' do
|
||
|
group
|
||
|
|
||
|
enabled { true }
|
||
|
end
|
||
|
end
|