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

runner_web_url_edge_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: fc4e54283603f6efe63f2a2efa3b2cee28be043d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Types::Ci::RunnerWebUrlEdge, feature_category: :fleet_visibility do
  specify { expect(described_class.graphql_name).to eq('RunnerWebUrlEdge') }

  it 'contains URL attributes' do
    expected_fields = %w[edit_url web_url]

    expect(described_class).to include_graphql_fields(*expected_fields)
  end
end