summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/graphql/issuable_state_shared_examples.rb
blob: 145c476c7f727b9f5c764ba747a54ead08cbe0bf (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

RSpec.shared_examples 'issuable state' do
  it 'exposes all the existing issuable states' do
    expect(described_class.values.keys).to include(*%w[opened closed locked])
  end
end