Sha256: b05a7f0d7e5e9ae92f552372a0625531226664416af5b3e5cbb41d0be360419c
Contents?: true
Size: 393 Bytes
Versions: 28
Compression:
Stored size: 393 Bytes
Contents
require "spec_helper" describe Bunny::Channel, "#tx_rollback" 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_rollback ch.close end end
Version data entries
28 entries across 28 versions & 1 rubygems