Sha256: ae1b8c686481b37175b4ba4a9110f807c0cd271cda7c2b4c2b17a3846523723a
Contents?: true
Size: 385 Bytes
Versions: 30
Compression:
Stored size: 385 Bytes
Contents
require "spec_helper" describe Bunny::Channel, "#tx_commit" do let(:connection) do c = Bunny.new(username: "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_commit ch.close end end
Version data entries
30 entries across 30 versions & 1 rubygems