summaryrefslogtreecommitdiff
path: root/spec/graphql/types/board_type_spec.rb
blob: 403fbe1f290a02105c182ee55c6564bcc5e379d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['Board'] do
  specify { expect(described_class.graphql_name).to eq('Board') }

  specify { expect(described_class).to require_graphql_authorizations(:read_issue_board) }

  it 'has specific fields' do
    expected_fields = %w[
      id
      name
      hideBacklogList
      hideClosedList
      createdAt
      updatedAt
      lists
      webPath
      webUrl
    ]

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