Sha256: 4eb4945c238908b67d1d00673e05b32d204b623c09a54a31f8f818c5740c7faf

Contents?: true

Size: 379 Bytes

Versions: 28

Compression:

Stored size: 379 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 :all 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

28 entries across 28 versions & 1 rubygems

Version Path
bunny-0.10.0 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-1.0.0.pre3 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.8 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-1.0.0.pre2 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.7 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.6 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.5 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.4 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-1.0.0.pre1 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.3 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.2 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.1 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0.rc2 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0.rc1 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0.pre13 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0.pre12 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0.pre11 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0.pre10 spec/higher_level_api/integration/confirm_select_spec.rb
bunny-0.9.0.pre9 spec/higher_level_api/integration/confirm_select_spec.rb