1# frozen_string_literal: true
2
3RSpec.shared_examples 'issuable state' do
4  it 'exposes all the existing issuable states' do
5    expect(described_class.values.keys).to include(*%w[opened closed locked])
6  end
7end
8