summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/graphql/issuable_state_shared_examples.rb
blob: 713f0a879c10cb7493be00054883b593ba48f738 (plain)
1
2
3
4
5
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