diaspora/spec/workers/recheck_offline_pods_spec.rb
2021-04-11 01:51:38 +02:00

11 lines
345 B
Ruby

# frozen_string_literal: true
describe Workers::RecheckScheduledPods do
it "performs a connection test on all scheduled pods" do
(0..4).map { FactoryBot.create(:pod) }
FactoryBot.create(:pod, scheduled_check: true)
expect_any_instance_of(Pod).to receive(:test_connection!)
Workers::RecheckScheduledPods.new.perform
end
end