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

stage_type_spec.rb « value_streams « 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: 92276647e1bbc34347a37e1bf8e4603ddc5036f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Types::Analytics::CycleAnalytics::ValueStreams::StageType, feature_category: :value_stream_management do
  let(:fields) do
    %i[
      name start_event_identifier
      end_event_identifier hidden custom
    ]
  end

  specify { expect(described_class.graphql_name).to eq('ValueStreamStage') }
  specify { expect(described_class).to have_graphql_fields(fields).at_least }
end