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

describe GitlabSchema.types['Note'] do
  it 'exposes the expected fields' do
    expected_fields = [:id, :project, :author, :body, :created_at,
                       :updated_at, :discussion, :resolvable, :position, :user_permissions,
                       :resolved_by, :resolved_at, :system, :body_html, :confidential]

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

  it { expect(described_class).to expose_permissions_using(Types::PermissionTypes::Note) }
  it { expect(described_class).to require_graphql_authorizations(:read_note) }
end