mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
14 lines
363 B
Ruby
14 lines
363 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe "Running Sidekiq Jobs in Multisite" do
|
||
|
it 'should revert back to the default connection' do
|
||
|
expect(RailsMultisite::ConnectionManagement.current_db)
|
||
|
.to eq('default')
|
||
|
|
||
|
Jobs::DestroyOldDeletionStubs.new.perform({})
|
||
|
|
||
|
expect(RailsMultisite::ConnectionManagement.current_db)
|
||
|
.to eq('default')
|
||
|
end
|
||
|
end
|