summaryrefslogtreecommitdiff
path: root/spec/graphql/types/user_preferences_type_spec.rb
blob: fac45443290e0c46280e97cd711289283b2e19ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Types::UserPreferencesType do
  specify { expect(described_class.graphql_name).to eq('UserPreferences') }

  it 'exposes the expected fields' do
    expected_fields = %i[
      issues_sort
    ]

    expect(described_class).to have_graphql_fields(*expected_fields)
  end
end