Sha256: 805ac916dd480a0f71f1e79649f2d54586f11a7e73fba4ec2715ac3ba30e326c
Contents?: true
Size: 624 Bytes
Versions: 8
Compression:
Stored size: 624 Bytes
Contents
require 'test_helper' require 'sidekiq' class SidekiqWorkersSendMetricsTest < AcceptanceTestCase def test_sidekiq_worker_sends_metrics test_sidekiq_worker = TestSidekiqServer.new test_endpoint = TestEndpoint.new(port: 8081) test_endpoint.listen test_sidekiq_worker.boot(chillout_port: 8081) test_sidekiq_worker.push_job if ENV['STRATEGY'] != 'active_job' assert test_endpoint.has_received_information_about_startup end assert test_endpoint.has_one_creation_for_entity_resource ensure test_sidekiq_worker.shutdown if test_sidekiq_worker end end if ENV['SIDEKIQ_SUPPORTED']
Version data entries
8 entries across 8 versions & 1 rubygems