discourse/spec/multisite/jobs_spec.rb
Daniel Waterworth ad44243a57 Removed unused let blocks (#7446)
The bodies of these blocks were never evaluated.
2019-04-29 15:08:56 +08:00

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