debian-mirror-gitlab/qa/spec/scenario/test/integration/ldap_spec.rb

18 lines
383 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2018-12-13 13:39:08 +05:30
describe QA::Scenario::Test::Integration::LDAPNoTLS do
2018-11-20 20:47:30 +05:30
context '#perform' do
it_behaves_like 'a QA scenario class' do
2018-12-13 13:39:08 +05:30
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] }
2018-11-20 20:47:30 +05:30
end
end
end