Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variable_type_spec.rb « ci « types « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a81e6adbab6cf08e3635f619a386ba72ad470c83 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['CiVariable'] do
  it 'contains attributes related to CI variables' do
    expect(described_class).to have_graphql_fields(
      :id, :key, :value, :variable_type, :protected, :masked, :raw, :environment_scope
    )
  end
end