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

test_case_status_enum_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: ba2d1aefb207476e57e8b10c63b37bf4e6a30270 (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::TestCaseStatusEnum do
  specify { expect(described_class.graphql_name).to eq('TestCaseStatus') }

  it 'exposes all test case status types' do
    expect(described_class.values.keys).to eq(
      ::Gitlab::Ci::Reports::TestCase::STATUS_TYPES
    )
  end
end