Sha256: ca8deedfd21d47706960dbcd89d570f69c48bc3282c8ca303593b81afd173f97
Contents?: true
Size: 699 Bytes
Versions: 23
Compression:
Stored size: 699 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe RubyRabbitmqJanus::Janus::Concurrencies::KeepaliveInitializer, type: :thread, name: :keepalive_initializer do let(:instance) { RubyRabbitmqJanus::Models::JanusInstance.find((ENV['MONGO'].match?('true') ? %w[1 2] : [1, 2]).sample) } let(:concurrency) { described_class.new(instance) } it { expect(concurrency.send(:rabbit)).to be_a(RubyRabbitmqJanus::Rabbit::Connect) } it { expect(concurrency.send(:lock)).to be_a(Mutex) } it { expect(concurrency.send(:condition)).to be_a(ConditionVariable) } it { expect(concurrency.instance_variable_get(:@thread)).to be_a(RubyRabbitmqJanus::Janus::Concurrencies::KeepaliveThread) } end
Version data entries
23 entries across 23 versions & 1 rubygems