mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 11:58:15 +08:00
15 lines
538 B
Ruby
15 lines
538 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|
|
|
|
it "CheckNewFeatures should only hit the payload once" do
|
|
# otherwise it will get rate-limited by meta
|
|
DiscourseUpdates.expects(:new_features_payload).returns("{}").once
|
|
Jobs::CheckNewFeatures.new.perform({})
|
|
end
|
|
end
|