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

16 lines
475 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
require 'fast_spec_helper'
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
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