Sha256: 2ffa38ac36bfc5df401586fc42fd28ed458ada2a073f3fb2f25e616aa19f55b1

Contents?: true

Size: 389 Bytes

Versions: 30

Compression:

Stored size: 389 Bytes

Contents

require "spec_helper"

describe Bunny::Channel, "#tx_rollback" 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_rollback

    ch.close
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
bunny-2.8.1 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.9.0 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.7.3 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.8.0 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.7.2 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.7.1 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.7.0 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.6.6 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.6.5 spec/higher_level_api/integration/tx_rollback_spec.rb
bunny-2.6.4 spec/higher_level_api/integration/tx_rollback_spec.rb