summaryrefslogtreecommitdiff
path: root/spec/graphql/types/project_statistics_type_spec.rb
blob: e9feac57a360da83757b03682bc19d18447e8758 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

describe GitlabSchema.types['ProjectStatistics'] do
  it "has all the required fields" do
    is_expected.to have_graphql_fields(:storage_size, :repository_size, :lfs_objects_size,
                                       :build_artifacts_size, :packages_size, :commit_count,
                                       :wiki_size)
  end
end