summaryrefslogtreecommitdiff
path: root/spec/graphql/types/snippets/blob_type_spec.rb
blob: b6253e96d60c51698f8b87a6286687ca92c2cf7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

describe GitlabSchema.types['SnippetBlob'] do
  it 'has the correct fields' do
    expected_fields = [:rich_data, :plain_data,
                       :raw_path, :size, :binary, :name, :path,
                       :simple_viewer, :rich_viewer, :mode]

    is_expected.to have_graphql_fields(*expected_fields)
  end
end