summaryrefslogtreecommitdiff
path: root/spec/graphql/types/ci/test_case_status_enum_spec.rb
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