debian-mirror-gitlab/spec/graphql/types/label_type_spec.rb

22 lines
468 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe GitlabSchema.types['Label'] do
2019-09-30 21:07:59 +05:30
it 'has the correct fields' do
2021-04-17 20:07:23 +05:30
expected_fields = [
:id,
:description,
:description_html,
:title,
:color,
:text_color,
:created_at,
:updated_at
]
2019-09-30 21:07:59 +05:30
2020-04-22 19:07:51 +05:30
expect(described_class).to have_graphql_fields(*expected_fields)
2019-09-30 21:07:59 +05:30
end
2020-05-24 23:13:21 +05:30
specify { expect(described_class).to require_graphql_authorizations(:read_label) }
2019-07-07 11:18:12 +05:30
end