Sha256: bdeeb93e28c58e8beb69bbbfdc4bf2d50f8aba07d5c5df5b1bf1a0b3c2d0bd1f

Contents?: true

Size: 380 Bytes

Versions: 66

Compression:

Stored size: 380 Bytes

Contents

require "spec_helper"

describe Bunny::Channel, "#confirm_select" 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
    connection.with_channel do |ch|
      ch.confirm_select
    end
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
bunny-1.0.0.pre5 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.10.4 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.10.3 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-1.0.0.pre4 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.10.2 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.10.1 spec/higher_level_api/integration/confirm_select_spec.rb