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

require 'spec_helper'

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

  specify { expect(described_class).to require_graphql_authorizations(:read_milestone) }
end