2020-06-23 00:09:42 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
require 'rubocop_spec_helper'
|
2020-06-23 00:09:42 +05:30
|
|
|
require_relative '../../../../rubocop/cop/gitlab/bulk_insert'
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
RSpec.describe RuboCop::Cop::Gitlab::BulkInsert do
|
2021-12-11 22:18:48 +05:30
|
|
|
it 'flags the use of ApplicationRecord.legacy_bulk_insert' do
|
2020-06-23 00:09:42 +05:30
|
|
|
expect_offense(<<~SOURCE)
|
2021-12-11 22:18:48 +05:30
|
|
|
ApplicationRecord.legacy_bulk_insert('merge_request_diff_files', rows)
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `BulkInsertSafe` concern, [...]
|
2020-11-24 15:15:51 +05:30
|
|
|
SOURCE
|
|
|
|
end
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
it 'flags the use of ::ApplicationRecord.legacy_bulk_insert' do
|
2020-11-24 15:15:51 +05:30
|
|
|
expect_offense(<<~SOURCE)
|
2021-12-11 22:18:48 +05:30
|
|
|
::ApplicationRecord.legacy_bulk_insert('merge_request_diff_files', rows)
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `BulkInsertSafe` concern, [...]
|
2020-06-23 00:09:42 +05:30
|
|
|
SOURCE
|
|
|
|
end
|
|
|
|
end
|