Sha256: fb828b7586a36ae2093dee2dd9426275c4b8683bf80f60cd6d66f2d9fcbaa740
Contents?: true
Size: 621 Bytes
Versions: 13
Compression:
Stored size: 621 Bytes
Contents
require "spec_helper" describe Bunny::Queue, "bound to an 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 end it "can be unbound from an exchange it was bound to" end describe Bunny::Queue, "NOT bound to an 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 end it "cannot be unbound (raises a channel error)" end
Version data entries
13 entries across 13 versions & 1 rubygems