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

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

require 'spec_helper'

RSpec.describe GitlabSchema.types['IssuableState'] do
  specify { expect(described_class.graphql_name).to eq('IssuableState') }

  it_behaves_like 'issuable state'
end