summaryrefslogtreecommitdiff
path: root/spec/graphql/types/projects/jira_service_type_spec.rb
blob: 7f8fa6538e99f6d0283015c5b6890d7a168bf5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

describe GitlabSchema.types['JiraService'] do
  it { expect(described_class.graphql_name).to eq('JiraService') }

  it 'has basic expected fields' do
    expect(described_class).to have_graphql_fields(:type, :active)
  end

  it { expect(described_class).to require_graphql_authorizations(:admin_project) }
end