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