queueing_rabbit 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZTk3ODlhMzY4N2ZkOGVmYWRkZmE3YzM2NDRkNzdkZDE3ZjhlZTZlMA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Y2QzZDZkNzdiMmM1NmY4ZWZhMTE4ZGQzNTFmM2U5N2YyMDMyZmEwMA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MjFlYjE1ZmQ4ZGQ4MGQ1MGRmNjVjNGQzYzgxMGQ5NzAwNmE0NTY3M2IyMGI2
|
10
|
+
ZDNlYzRlZjFkZGQ3MTE0YmZmMGIzZjA3Njk0MjdiNTQ0ZWFkYmJiNzJlZDVj
|
11
|
+
NjRkZTllYTQwYzU5OWFlMmU4Njc0YjU5YTRhNDE2ZDcxOGYwODk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OTNlYTBiMjJiNjcyYzEyZGQ4N2YzMjJjMTA1Yjg2NTRiZmQyNzc3OWQyOWZl
|
14
|
+
YWFiOTEzMTIwNTY3NzNhNzZkZDVhYWJlYmFlOWYxY2JiMjdlODQ0MjlkYTcx
|
15
|
+
ODI3NTJjOTEyZThlNTYyNTg4YWVlODk1MDg1MGQ1ODVjNjFmMGM=
|
@@ -216,11 +216,11 @@ describe QueueingRabbit::Client::AMQP do
|
|
216
216
|
context 'with arguments and type' do
|
217
217
|
let(:channel) { mock }
|
218
218
|
let(:name) { 'some_exchange_name' }
|
219
|
-
let(:options) { {:type => 'direct'} }
|
219
|
+
let(:options) { {:type => 'direct', :durable => true} }
|
220
220
|
let(:exchange) { mock }
|
221
221
|
|
222
222
|
it 'creates an exchange of given type and options' do
|
223
|
-
channel.should_receive(:direct).with(name,
|
223
|
+
channel.should_receive(:direct).with(name, :durable => true).
|
224
224
|
and_return(exchange)
|
225
225
|
client.define_exchange(channel, name, options).should == exchange
|
226
226
|
end
|
@@ -101,11 +101,11 @@ describe QueueingRabbit::Client::Bunny do
|
|
101
101
|
context 'with arguments and type' do
|
102
102
|
let(:channel) { mock }
|
103
103
|
let(:name) { 'some_exchange_name' }
|
104
|
-
let(:options) { {:type => 'direct'} }
|
104
|
+
let(:options) { {:type => 'direct', :durable => true} }
|
105
105
|
let(:exchange) { mock }
|
106
106
|
|
107
107
|
it 'creates an exchange of given type and options' do
|
108
|
-
channel.should_receive(:direct).with(name,
|
108
|
+
channel.should_receive(:direct).with(name, :durable => true).
|
109
109
|
and_return(exchange)
|
110
110
|
client.define_exchange(channel, name, options).should == exchange
|
111
111
|
end
|