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

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

require 'fast_spec_helper'
require 'rubocop'
require_relative '../../../../rubocop/cop/gitlab/except'

RSpec.describe RuboCop::Cop::Gitlab::Except do
  subject(:cop) { described_class.new }

  it 'flags the use of Gitlab::SQL::Except.new' do
    expect_offense(<<~SOURCE)
    Gitlab::SQL::Except.new([foo])
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `FromExcept` concern, instead of using `Gitlab::SQL::Except` directly
    SOURCE
  end
end