gitlab-org--gitlab-foss/spec/graphql/types/projects/jira_service_type_spec.rb

14 lines
365 B
Ruby
Raw Normal View History

# 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