mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 17:35:16 +08:00
ad44243a57
The bodies of these blocks were never evaluated.
10 lines
301 B
Ruby
10 lines
301 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "Running Sidekiq Jobs in Multisite", type: :multisite do
|
|
it 'should revert back to the default connection' do
|
|
expect do
|
|
Jobs::DestroyOldDeletionStubs.new.perform({})
|
|
end.to_not change { RailsMultisite::ConnectionManagement.current_db }
|
|
end
|
|
end
|