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

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

require 'spec_helper'

RSpec.describe Types::Analytics::CycleAnalytics::ValueStreamType, feature_category: :value_stream_management do
  specify { expect(described_class.graphql_name).to eq('ValueStream') }

  specify { expect(described_class).to require_graphql_authorizations(:read_cycle_analytics) }

  specify { expect(described_class).to have_graphql_fields(:id, :name, :namespace, :project) }
end