Sha256: f07d78462802f357e6b4cc6834273ecd8ebd736ada3d9b3972a83a2689d2614b
Contents?: true
Size: 817 Bytes
Versions: 73
Compression:
Stored size: 817 Bytes
Contents
require 'yaml' module Gitlab module QA module Scenario module Test module Integration class GroupSAML < SAML def initialize @gitlab_name = 'gitlab-group-saml' @spec_suite = 'QA::EE::Scenario::Test::Integration::GroupSAML' @saml_component = false end def before_perform(release) raise ArgumentError, 'Group SAML is EE only feature!' unless release.ee? end def configure(gitlab, saml) gitlab.omnibus_configuration << <<~OMNIBUS gitlab_rails['omniauth_enabled'] = true; gitlab_rails['omniauth_providers'] = [{ name: 'group_saml' }]; OMNIBUS end end end end end end end
Version data entries
73 entries across 73 versions & 1 rubygems