Sha256: 9ca2e83ad8f1147c4262749620cfe2a791a8ba99efd22e90e93ab5b98c898f62

Contents?: true

Size: 712 Bytes

Versions: 55

Compression:

Stored size: 712 Bytes

Contents

require "spec_helper"

describe Bunny::Exchange 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 if connection.open?
  end

  it "binds two existing exchanges" do
    ch          = connection.create_channel

    source      = ch.fanout("bunny.exchanges.source", :auto_delete => true)
    destination = ch.fanout("bunny.exchanges.destination", :auto_delete => true)

    queue       = ch.queue("", :exclusive => true)
    queue.bind(destination)

    destination.bind(source)
    source.publish("")
    sleep 0.5

    queue.message_count.should be > 0

    ch.close
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

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