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

Version Path
bunny-0.10.0 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.pre3 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.8 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.pre2 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.7 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.6 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.5 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.4 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-1.0.0.pre1 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.3 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.2 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.1 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0.rc2 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0.rc1 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0.pre13 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0.pre12 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0.pre11 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0.pre10 spec/higher_level_api/integration/channel_flow_spec.rb
bunny-0.9.0.pre9 spec/higher_level_api/integration/channel_flow_spec.rb