Sha256: 2000b6f11898cef57e3b6056c7d2f15353a39903a06d410eb7dcd312d752c65e

Contents?: true

Size: 511 Bytes

Versions: 17

Compression:

Stored size: 511 Bytes

Contents

require "spec_helper"

describe Bunny::Channel, "#with_channel" 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 "closes if the block throws an exception" do
    ch = nil
    begin
      connection.with_channel do |wch|
        ch = wch
        raise Exception.new
      end
    rescue Exception
    end
    expect(ch).to be_closed
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
bunny-2.6.3 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.6.2 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.6.1 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.6.0 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.5.1 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.5.0 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.4.0 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.3.1 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.3.0 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.2.2 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.2.1 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.2.0 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.1.0 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.0.1 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.0.0 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.0.0.rc2 spec/higher_level_api/integration/with_channel_spec.rb
bunny-2.0.0.rc1 spec/higher_level_api/integration/with_channel_spec.rb