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

gid_expected_type_spec.rb « graphql « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47a6ce24d531ec8b747f7f8245c84ceb352b6555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'fast_spec_helper'

require_relative '../../../../rubocop/cop/graphql/gid_expected_type'

RSpec.describe RuboCop::Cop::Graphql::GIDExpectedType do
  subject(:cop) { described_class.new }

  it 'adds an offense when there is no expected_type parameter' do
    expect_offense(<<~TYPE)
      GitlabSchema.object_from_id(received_id)
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Add an expected_type parameter to #object_from_id calls if possible.
    TYPE
  end

  it 'does not add an offense for calls that have an expected_type parameter' do
    expect_no_offenses(<<~TYPE.strip)
      GitlabSchema.object_from_id("some_id", expected_type: SomeClass)
    TYPE
  end
end