summaryrefslogtreecommitdiff
path: root/spec/graphql/types/notes/note_type_spec.rb
blob: 8022b20f9dd8c6c8f282c7b84d2937f9513e0e7e (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]

    is_expected.to have_graphql_fields(*expected_fields)
  end

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