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

11 lines
241 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe GitlabSchema.types['CiVariable'] do
specify do
expect(described_class).to have_graphql_fields(
:id, :key, :value, :variable_type, :raw
).at_least
end
end