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

require 'spec_helper'

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

  it 'exposes the correct event states' do
    expect(described_class.values.keys).to include(*%w[CREATION MODIFICATION DELETION NONE])
  end
end