summaryrefslogtreecommitdiff
path: root/qa/spec/scenario/test/integration/ldap_spec.rb
blob: b6d798bf504d7cb3d5b83bcfc691ad41ff8d5f26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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