summaryrefslogtreecommitdiff
path: root/spec/graphql/types/design_management/design_collection_copy_state_enum_spec.rb
blob: f536d91aeda1a4da73c48bb7c26fb9960c773160 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['DesignCollectionCopyState'] do
  it { expect(described_class.graphql_name).to eq('DesignCollectionCopyState') }

  it 'exposes the correct event states' do
    expect(described_class.values.keys).to match_array(%w(READY IN_PROGRESS ERROR))
  end
end