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

http_integration_type_spec.rb « alert_management « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4b64e2e37f3352424b5d3cf60804f4b7de3df09 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

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

  specify { expect(described_class).to require_graphql_authorizations(:admin_operations) }
end