Sha256: 0fb4256b7b0e5b880a0474daec7dc129e5aa2cab8c67ce7df62e5dae193fff4a

Contents?: true

Size: 862 Bytes

Versions: 28

Compression:

Stored size: 862 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 :all do
    connection.close if connection.open?
  end

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

    source      = ch.fanout("bunny.exchanges.source#{rand}")
    destination = ch.fanout("bunny.exchanges.destination#{rand}")

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

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

    queue.message_count.should be == 1
    queue.pop(:ack => true)

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

    queue.message_count.should be == 0

    source.delete
    destination.delete
    ch.close
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

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