Sha256: 5f4f2425dfb049bc5fd12227226524103d29f33344de5c180dc734dc5c48e8b1

Contents?: true

Size: 535 Bytes

Versions: 35

Compression:

Stored size: 535 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 :each do
    connection.close
  end

  it "is supported" do
    ch = connection.create_channel

    ch.flow(true).should be_instance_of(AMQ::Protocol::Channel::FlowOk)
    ch.flow(false).should be_instance_of(AMQ::Protocol::Channel::FlowOk)
    ch.flow(true).should be_instance_of(AMQ::Protocol::Channel::FlowOk)
  end
end

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
bunny-1.0.0 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.rc3 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.rc2 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.8 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.rc1 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.7 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.6 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.pre6 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.5 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.pre5 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.4 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.3 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.pre4 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.2 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.10.1 spec/higher_level_api/integration/channel_flow_spec.rb