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

RSpec.shared_examples 'common sort values' do
  it 'exposes all the existing common sort values' do
    expect(described_class.values.keys).to include(*%w[updated_desc updated_asc created_desc created_asc])
  end
end