debian-mirror-gitlab/spec/graphql/types/diff_refs_type_spec.rb
2019-09-30 21:07:59 +05:30

10 lines
256 B
Ruby

# 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