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

16 lines
454 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/except'
2021-03-08 18:12:59 +05:30
RSpec.describe RuboCop::Cop::Gitlab::Except do
2020-11-24 15:15:51 +05:30
subject(:cop) { described_class.new }
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