debian-mirror-gitlab/spec/graphql/types/projects/jira_service_type_spec.rb

14 lines
375 B
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
require 'spec_helper'
describe GitlabSchema.types['JiraService'] do
2020-05-24 23:13:21 +05:30
specify { expect(described_class.graphql_name).to eq('JiraService') }
2020-04-22 19:07:51 +05:30
it 'has basic expected fields' do
expect(described_class).to have_graphql_fields(:type, :active)
end
2020-05-24 23:13:21 +05:30
specify { expect(described_class).to require_graphql_authorizations(:admin_project) }
2020-04-22 19:07:51 +05:30
end