Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ldap_spec.rb « integration « test « scenario « spec « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c53302d9bd37d971dd39f6ed1b2209d7bcc7c326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

RSpec.describe QA::Scenario::Test::Integration::LDAPNoTLS do
  describe '#perform' do
    it_behaves_like 'a QA scenario class' do
      let(:tags) { [:ldap_no_tls] }
    end
  end
end

RSpec.describe QA::Scenario::Test::Integration::LDAPNoServer do
  describe '#perform' do
    it_behaves_like 'a QA scenario class' do
      let(:tags) { [:ldap_no_server] }
    end
  end
end

RSpec.describe QA::Scenario::Test::Integration::LDAPTLS do
  describe '#perform' do
    it_behaves_like 'a QA scenario class' do
      let(:tags) { [:ldap_tls] }
    end
  end
end