summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/gitlab/intersect_spec.rb
blob: 6f0367591cdb6bccd869b8e046a3f3333f075589 (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/intersect'

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

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