debian-mirror-gitlab/spec/graphql/types/ci/instance_variable_type_spec.rb
2022-08-27 11:52:29 +05:30

9 lines
307 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe GitlabSchema.types['CiInstanceVariable'] do
specify { expect(described_class.interfaces).to contain_exactly(Types::Ci::VariableInterface) }
specify { expect(described_class).to have_graphql_fields(:masked, :protected).at_least }
end