debian-mirror-gitlab/spec/rubocop/cop/database/multiple_databases_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
932 B
Ruby
Raw Normal View History

2021-09-30 23:02:18 +05:30
# frozen_string_literal: true
2022-10-11 01:57:18 +05:30
require 'rubocop_spec_helper'
2021-09-30 23:02:18 +05:30
require_relative '../../../../rubocop/cop/database/multiple_databases'
RSpec.describe RuboCop::Cop::Database::MultipleDatabases do
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
2022-05-07 20:08:51 +05:30
2022-07-16 23:28:13 +05:30
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
2022-05-07 20:08:51 +05:30
described_class::ALLOWED_METHODS.each do |method_name|
it "does not flag use of ActiveRecord::Base.#{method_name}" do
expect_no_offenses(<<~SOURCE)
ActiveRecord::Base.#{method_name} do
Project.save
end
SOURCE
end
end
2021-09-30 23:02:18 +05:30
end