Sha256: 2c1f962eb56ecb3d23770e9c02dfb8b69bea168f80948bb0063f3040b6c0a0ba
Contents?: true
Size: 456 Bytes
Versions: 24
Compression:
Stored size: 456 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe RubyRabbitmqJanus::Janus::Concurrencies::Concurrency, type: :thread, name: :concurrency do let(:concurrency) { RubyRabbitmqJanus::Janus::Concurrencies::Concurrency.new } 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) } end
Version data entries
24 entries across 24 versions & 1 rubygems