Sha256: 84e7192a223201b745cfebb88941c3a36fc609f148e16a58bdd1691d60f71c6a
Contents?: true
Size: 394 Bytes
Versions: 72
Compression:
Stored size: 394 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 :each 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
72 entries across 72 versions & 1 rubygems