2020-06-23 00:09:42 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
require 'fast_spec_helper'
|
2020-06-23 00:09:42 +05:30
|
|
|
require 'rubocop'
|
|
|
|
require_relative '../../../../rubocop/cop/gitlab/bulk_insert'
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
RSpec.describe RuboCop::Cop::Gitlab::BulkInsert do
|
2020-06-23 00:09:42 +05:30
|
|
|
subject(:cop) { described_class.new }
|
|
|
|
|
|
|
|
it 'flags the use of Gitlab::Database.bulk_insert' do
|
|
|
|
expect_offense(<<~SOURCE)
|
2021-03-11 19:13:27 +05:30
|
|
|
Gitlab::Database.bulk_insert('merge_request_diff_files', rows)
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `BulkInsertSafe` concern, [...]
|
2020-11-24 15:15:51 +05:30
|
|
|
SOURCE
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'flags the use of ::Gitlab::Database.bulk_insert' do
|
|
|
|
expect_offense(<<~SOURCE)
|
2021-03-11 19:13:27 +05:30
|
|
|
::Gitlab::Database.bulk_insert('merge_request_diff_files', rows)
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `BulkInsertSafe` concern, [...]
|
2020-06-23 00:09:42 +05:30
|
|
|
SOURCE
|
|
|
|
end
|
|
|
|
end
|