summaryrefslogtreecommitdiff
path: root/spec/graphql/types/diff_refs_type_spec.rb
blob: 91017c827adb883441820d1bb511c82b03887503 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

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

  it { expect(described_class).to have_graphql_fields(:base_sha, :head_sha, :start_sha) }
end