summaryrefslogtreecommitdiff
path: root/spec/graphql/types/project_type_spec.rb
blob: 075fa7c7e4365a418f55773f6f6d255420c9e18f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'spec_helper'

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

  it { expect(described_class.graphql_name).to eq('Project') }

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

  describe 'nested merge request' do
    it { expect(described_class).to have_graphql_field(:merge_requests) }
    it { expect(described_class).to have_graphql_field(:merge_request) }
  end

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

  it { is_expected.to have_graphql_field(:pipelines) }

  it { is_expected.to have_graphql_field(:repository) }
end