summaryrefslogtreecommitdiff
path: root/spec/graphql/types/merge_request_type_spec.rb
blob: 89c12879074572546ae24e1192905bf94dfea4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'spec_helper'

describe GitlabSchema.types['MergeRequest'] do
  it { expect(described_class).to expose_permissions_using(Types::PermissionTypes::MergeRequest) }

  it { expect(described_class).to require_graphql_authorizations(:read_merge_request) }

  describe 'nested head pipeline' do
    it { expect(described_class).to have_graphql_field(:head_pipeline) }
  end
end