Sha256: 38471f9c0a10581fab7b24766f79a93575c1519e4a46306ffec305248d95ffaf

Contents?: true

Size: 452 Bytes

Versions: 83

Compression:

Stored size: 452 Bytes

Contents

require "spec_helper"

describe Bunny::Channel, "#recover" do
  let(:connection) do
    c = Bunny.new(:user => "bunny_gem", :password => "bunny_password", :vhost => "bunny_testbed")
    c.start
    c
  end

  subject do
    connection.create_channel
  end

  it "is supported" do
    subject.recover(true).should be_instance_of(AMQ::Protocol::Basic::RecoverOk)
    subject.recover(true).should be_instance_of(AMQ::Protocol::Basic::RecoverOk)
  end
end

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
bunny-1.7.1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.7.0 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.6.3 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.6.2 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.6.1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.6.0 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.5.1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.6.0.rc2 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.6.0.rc1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.6.0.pre1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.5.0 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.5.0.pre2 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.5.0.pre1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.4.1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.4.0 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.3.1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.3.0 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.2.2 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.2.1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.2.0 spec/higher_level_api/integration/basic_recover_spec.rb