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

16 lines
447 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2020-07-28 23:09:34 +05:30
require 'fast_spec_helper'
2018-12-05 23:21:45 +05:30
require_relative '../../../../rubocop/cop/gitlab/union'
2021-03-08 18:12:59 +05:30
RSpec.describe RuboCop::Cop::Gitlab::Union do
2018-12-05 23:21:45 +05:30
subject(:cop) { described_class.new }
it 'flags the use of Gitlab::SQL::Union.new' do
expect_offense(<<~SOURCE)
Gitlab::SQL::Union.new([foo])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `FromUnion` concern, instead of using `Gitlab::SQL::Union` directly
SOURCE
end
end