Files
gitlab-ce/spec/factories/namespace_settings.rb
2024-05-07 15:12:23 +00:00

10 lines
231 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :namespace_settings, class: 'NamespaceSetting' do
default_branch_protection_defaults { ::Gitlab::Access::BranchProtection.protection_none }
namespace
end
end