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

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

require 'spec_helper'

RSpec.describe GitlabSchema.types['ProjectStatistics'] do
  it 'has the expected fields' do
    expect(described_class).to include_graphql_fields(
      :storage_size, :repository_size, :lfs_objects_size,
      :build_artifacts_size, :packages_size, :commit_count,
      :wiki_size, :snippets_size, :pipeline_artifacts_size,
      :uploads_size, :container_registry_size
    )
  end
end