Sha256: 8c26506d1c3da383ee74bb68cd334fda4dfd1f891fd50f929d809b71b010f49e
Contents?: true
Size: 564 Bytes
Versions: 28
Compression:
Stored size: 564 Bytes
Contents
require "spec_helper" describe Bunny::Channel, "#flow" do let(:connection) do c = Bunny.new(:user => "bunny_gem", :password => "bunny_password", :vhost => "bunny_testbed") c.start c end after :all do connection.close end subject do connection.create_channel end it "is supported" do subject.flow(true).should be_instance_of(AMQ::Protocol::Channel::FlowOk) subject.flow(false).should be_instance_of(AMQ::Protocol::Channel::FlowOk) subject.flow(true).should be_instance_of(AMQ::Protocol::Channel::FlowOk) end end
Version data entries
28 entries across 28 versions & 1 rubygems