Sha256: 2895eb24fa80f71cd86f586ee8ba490c85ee1f77fdce954db3dff99a11636965
Contents?: true
Size: 389 Bytes
Versions: 28
Compression:
Stored size: 389 Bytes
Contents
require "spec_helper" describe Bunny::Channel, "#tx_commit" 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 ch = connection.create_channel ch.tx_select ch.tx_commit ch.close end end
Version data entries
28 entries across 28 versions & 1 rubygems