Sha256: bdeeb93e28c58e8beb69bbbfdc4bf2d50f8aba07d5c5df5b1bf1a0b3c2d0bd1f
Contents?: true
Size: 380 Bytes
Versions: 66
Compression:
Stored size: 380 Bytes
Contents
require "spec_helper" describe Bunny::Channel, "#confirm_select" 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 "is supported" do connection.with_channel do |ch| ch.confirm_select end end end
Version data entries
66 entries across 66 versions & 1 rubygems