Sha256: fbbafd7b719e0408dc65aac92af0c5e63ef9a630a8295393ef21cee9392a8da5
Contents?: true
Size: 658 Bytes
Versions: 2
Compression:
Stored size: 658 Bytes
Contents
require 'spec_helper' describe Sidekiq::Queue do context 'singleton' do shared_examples :constructor do it 'with default name' do new_object = -> { described_class.send constructor } new_object.call.should == new_object.call end it 'with given name' do new_object = ->(name) { described_class.send constructor, name } new_object.call('name').should == new_object.call('name') end end context '.new' do let(:constructor) { :new } it_behaves_like :constructor end context '.[]' do let(:constructor) { :[] } it_behaves_like :constructor end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sidekiq-limit_fetch-0.4 | spec/sidekiq/limit_fetch/queue_spec.rb |
sidekiq-limit_fetch-0.3 | spec/sidekiq/limit_fetch/queue_spec.rb |