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

require 'spec_helper'

describe GitlabSchema.types['RootStorageStatistics'] do
  it { expect(described_class.graphql_name).to eq('RootStorageStatistics') }

  it 'has all the required fields' do
    expect(described_class).to have_graphql_fields(:storage_size, :repository_size, :lfs_objects_size,
                                       :build_artifacts_size, :packages_size, :wiki_size)
  end

  it { expect(described_class).to require_graphql_authorizations(:read_statistics) }
end