summaryrefslogtreecommitdiff
path: root/spec/graphql/types/root_storage_statistics_type_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/graphql/types/root_storage_statistics_type_spec.rb')
-rw-r--r--spec/graphql/types/root_storage_statistics_type_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/graphql/types/root_storage_statistics_type_spec.rb b/spec/graphql/types/root_storage_statistics_type_spec.rb
new file mode 100644
index 00000000000..8c69c13aa73
--- /dev/null
+++ b/spec/graphql/types/root_storage_statistics_type_spec.rb
@@ -0,0 +1,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
+ is_expected.to have_graphql_fields(:storage_size, :repository_size, :lfs_objects_size,
+ :build_artifacts_size, :packages_size, :wiki_size)
+ end
+
+ it { is_expected.to require_graphql_authorizations(:read_statistics) }
+end