Welcome to mirror list, hosted at ThFree Co, Russian Federation.

x509_signature_type_spec.rb « commit_signatures « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e268bd5b3b45e7504b86539ff4e90fe8f568a2c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['X509Signature'] do
  specify { expect(described_class.graphql_name).to eq('X509Signature') }

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

  specify { expect(described_class).to include(Types::CommitSignatureInterface) }

  it 'contains attributes related to X.509 signatures' do
    expect(described_class).to have_graphql_fields(
      :user, :verification_status, :commit_sha, :project,
      :x509_certificate
    )
  end
end