summaryrefslogtreecommitdiff
path: root/spec/graphql/types/alert_management/integration_type_enum_spec.rb
blob: 0cdd67cb140224d76b80bc089465404ba86249b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['AlertManagementIntegrationType'] do
  specify { expect(described_class.graphql_name).to eq('AlertManagementIntegrationType') }

  describe 'statuses' do
    using RSpec::Parameterized::TableSyntax

    where(:name, :value) do
      'PROMETHEUS'    | :prometheus
      'HTTP'          | :http
    end

    with_them do
      it 'exposes a type with the correct value' do
        expect(described_class.values[name].value).to eq(value)
      end
    end
  end
end