debian-mirror-gitlab/spec/graphql/types/dependency_proxy/manifest_type_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
356 B
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe GitlabSchema.types['DependencyProxyManifest'] do
it 'includes dependency proxy manifest fields' do
expected_fields = %w[
2022-06-21 17:19:12 +05:30
id file_name image_name size created_at updated_at digest status
2021-11-11 11:23:49 +05:30
]
expect(described_class).to include_graphql_fields(*expected_fields)
end
end