debian-mirror-gitlab/spec/rubocop/cop/gitlab/intersect_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
437 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
2022-10-11 01:57:18 +05:30
require 'rubocop_spec_helper'
2020-11-24 15:15:51 +05:30
require_relative '../../../../rubocop/cop/gitlab/intersect'
2021-03-08 18:12:59 +05:30
RSpec.describe RuboCop::Cop::Gitlab::Intersect do
2020-11-24 15:15:51 +05:30
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