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

grape_api_instance_spec.rb « api « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0199377f104d669b363956f4a6f4d2936a1db085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

require 'fast_spec_helper'
require 'rubocop'
require_relative '../../../support/helpers/expect_offense'
require_relative '../../../../rubocop/cop/api/grape_api_instance'

describe RuboCop::Cop::API::GrapeAPIInstance do
  include CopHelper
  include ExpectOffense

  subject(:cop) { described_class.new }

  it 'adds an offense when inheriting from Grape::API' do
    inspect_source(<<~CODE.strip_indent)
      class SomeAPI < Grape::API
      end
    CODE

    expect(cop.offenses.size).to eq(1)
  end

  it 'does not add an offense when inheriting from Grape::API::Instance' do
    inspect_source(<<~CODE.strip_indent)
      class SomeAPI < Grape::API::Instance
      end
    CODE

    expect(cop.offenses.size).to be_zero
  end
end