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

require 'spec_helper'

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

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