Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bulk_insert_spec.rb « gitlab « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cce93628fef2218364b94dd9a76627a060ca5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'rubocop_spec_helper'
require_relative '../../../../rubocop/cop/gitlab/bulk_insert'

RSpec.describe RuboCop::Cop::Gitlab::BulkInsert do
  subject(:cop) { described_class.new }

  it 'flags the use of ApplicationRecord.legacy_bulk_insert' do
    expect_offense(<<~SOURCE)
      ApplicationRecord.legacy_bulk_insert('merge_request_diff_files', rows)
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `BulkInsertSafe` concern, [...]
    SOURCE
  end

  it 'flags the use of ::ApplicationRecord.legacy_bulk_insert' do
    expect_offense(<<~SOURCE)
      ::ApplicationRecord.legacy_bulk_insert('merge_request_diff_files', rows)
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `BulkInsertSafe` concern, [...]
    SOURCE
  end
end