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

merge_request_type_spec.rb « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c369953e3eaa8d93a589ca66a89dcdeed3fa631b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'spec_helper'

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

  describe 'head pipeline' do
    it 'has a head pipeline field' do
      expect(described_class).to have_graphql_field(:head_pipeline)
    end

    it 'authorizes the field' do
      expect(described_class.fields['headPipeline'])
        .to require_graphql_authorizations(:read_pipeline)
    end
  end
end