Sha256: 4eb4945c238908b67d1d00673e05b32d204b623c09a54a31f8f818c5740c7faf
Contents?: true
Size: 379 Bytes
Versions: 28
Compression:
Stored size: 379 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 :all 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
28 entries across 28 versions & 1 rubygems