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-0.9.6 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.5 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.4 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-1.0.0.pre1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.3 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.2 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.rc2 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.rc1 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre13 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre12 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre11 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre10 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre9 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre8 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre7 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre6 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre5 spec/higher_level_api/integration/basic_recover_spec.rb
bunny-0.9.0.pre4 spec/higher_level_api/integration/basic_recover_spec.rb