9 lines
179 B
Ruby
9 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
|