gitlab-org--gitlab-foss/qa/spec/scenario/test/integration/ldap_spec.rb
2018-10-25 13:11:19 +05:00

17 lines
383 B
Ruby

# frozen_string_literal: true
describe QA::Scenario::Test::Integration::LDAPNoTLS do
context '#perform' do
it_behaves_like 'a QA scenario class' do
let(:tags) { [:ldap_no_tls] }
end
end
end
describe QA::Scenario::Test::Integration::LDAPTLS do
context '#perform' do
it_behaves_like 'a QA scenario class' do
let(:tags) { [:ldap_tls] }
end
end
end