debian-mirror-gitlab/spec/graphql/types/design_management/design_version_event_enum_spec.rb
2020-08-09 17:44:08 +05:30

11 lines
334 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.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