13 lines
416 B
Ruby
13 lines
416 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rubocop_spec_helper'
|
|
require_relative '../../../../rubocop/cop/gitlab/except'
|
|
|
|
RSpec.describe RuboCop::Cop::Gitlab::Except do
|
|
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
|