debian-mirror-gitlab/spec/graphql/types/metrics/dashboards/annotation_type_spec.rb
2020-08-09 17:44:08 +05:30

18 lines
516 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe GitlabSchema.types['MetricsDashboardAnnotation'] do
specify { expect(described_class.graphql_name).to eq('MetricsDashboardAnnotation') }
it 'has the expected fields' do
expected_fields = %w[
description id panel_id starting_at ending_at
]
expect(described_class).to have_graphql_fields(*expected_fields)
end
specify { expect(described_class).to require_graphql_authorizations(:read_metrics_dashboard_annotation) }
end