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

require 'spec_helper'

describe GitlabSchema.types['Commit'] do
  it { expect(described_class.graphql_name).to eq('Commit') }

  it { expect(described_class).to require_graphql_authorizations(:download_code) }

  it 'contains attributes related to commit' do
    expect(described_class).to have_graphql_fields(
      :id, :sha, :title, :description, :message, :authored_date,
      :author_name, :author_gravatar, :author, :web_url, :latest_pipeline,
      :pipelines, :signature_html
    )
  end
end