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

require 'spec_helper'

describe GitlabSchema.types['Snippet'] do
  it 'has the correct fields' do
    expected_fields = [:id, :title, :project, :author,
                       :file_name, :content, :description,
                       :visibility, :created_at, :updated_at,
                       :web_url, :raw_url, :notes, :discussions,
                       :user_permissions, :description_html]

    is_expected.to have_graphql_fields(*expected_fields)
  end

  describe 'authorizations' do
    it { expect(described_class).to require_graphql_authorizations(:read_snippet) }
  end
end