summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/database/multiple_databases_spec.rb
blob: 16b916d61dba091ee60aa16827b338bb7601919f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'fast_spec_helper'
require_relative '../../../../rubocop/cop/database/multiple_databases'

RSpec.describe RuboCop::Cop::Database::MultipleDatabases do
  subject(:cop) { described_class.new }

  it 'flags the use of ActiveRecord::Base.connection' do
    expect_offense(<<~SOURCE)
    ActiveRecord::Base.connection.inspect
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Do not use methods from ActiveRecord::Base, [...]
    SOURCE
  end
end