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

18 lines
449 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
require 'spec_helper'
describe GitlabSchema.types['Environment'] do
2020-05-24 23:13:21 +05:30
specify { expect(described_class.graphql_name).to eq('Environment') }
2020-03-13 15:44:24 +05:30
it 'has the expected fields' do
expected_fields = %w[
2020-04-22 19:07:51 +05:30
name id state metrics_dashboard
2020-03-13 15:44:24 +05:30
]
2020-04-22 19:07:51 +05:30
expect(described_class).to have_graphql_fields(*expected_fields)
2020-03-13 15:44:24 +05:30
end
2020-05-24 23:13:21 +05:30
specify { expect(described_class).to require_graphql_authorizations(:read_environment) }
2020-03-13 15:44:24 +05:30
end