Sha256: 4bbd6b1ba96b80c433f5a9a5db8808f620bdd696dbc6422a268cf50941598c79

Contents?: true

Size: 729 Bytes

Versions: 30

Compression:

Stored size: 729 Bytes

Contents

require "spec_helper"

describe Bunny::Exchange, "#publish" do
  let(:connection) do
    c = Bunny.new(username: "bunny_gem", password: "bunny_password", vhost: "bunny_testbed")
    c.start
    c
  end

  after :each do
    connection.close if connection.open?
  end


  context "with mandatory: true and a bad [no routes] routing key" do
    it "causes a message to be returned" do
      ch = connection.create_channel
      x  = ch.default_exchange

      returned = []
      x.on_return do |basic_deliver, properties, content|
        returned << content
      end

      x.publish("xyzzy", routing_key: rand.to_s, mandatory: true)
      sleep 0.5

      expect(returned).to include("xyzzy")

      ch.close
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
bunny-2.8.1 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.9.0 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.7.3 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.8.0 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.7.2 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.7.1 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.7.0 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.6.6 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.6.5 spec/higher_level_api/integration/basic_return_spec.rb
bunny-2.6.4 spec/higher_level_api/integration/basic_return_spec.rb