# 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 { expect(described_class).to have_graphql_fields(:id, :sha, :title, :description, :message, :authored_date, :author, :web_url, :latest_pipeline) } end