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

pipeline_type_spec.rb « ci « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fafc1bc13f4efba439f9664fbf1eaa5a8f50f12 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

describe Types::Ci::PipelineType do
  it { expect(described_class.graphql_name).to eq('Pipeline') }

  it { expect(described_class).to expose_permissions_using(Types::PermissionTypes::Ci::Pipeline) }
end