spec/integration/extensions/rabbitmq/publisher_confirmations_spec.rb in amqp-1.1.0.pre1 vs spec/integration/extensions/rabbitmq/publisher_confirmations_spec.rb in amqp-1.1.0.pre2
- old
+ new
@@ -27,24 +27,9 @@
@channel.confirm_select do |select_ok|
done
end
end
end
-
-
- context "with :nowait attribute set" do
- it "results in NOT confirm.select-ok response" do
- lambda do
- @channel.confirm_select(:nowait => true) do
- fail "Should never be called"
- end
- end.should raise_error(ArgumentError, /makes no sense/)
-
- @channel.confirm_select(:nowait => true)
-
- done(0.5)
- end
- end
end