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

    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