debian-mirror-gitlab/spec/graphql/types/diff_refs_type_spec.rb

14 lines
468 B
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
require 'spec_helper'
describe GitlabSchema.types['DiffRefs'] do
it { expect(described_class.graphql_name).to eq('DiffRefs') }
2020-03-13 15:44:24 +05:30
it { is_expected.to have_graphql_fields(:head_sha, :base_sha, :start_sha).only }
2020-03-07 23:17:34 +05:30
it { expect(described_class.fields['headSha'].type).to be_non_null }
it { expect(described_class.fields['baseSha'].type).not_to be_non_null }
it { expect(described_class.fields['startSha'].type).to be_non_null }
2019-09-30 21:07:59 +05:30
end