Sha256: bb3d7d51df8691eac04093252fab72b1c4e19043738d5c7d5978b4d88a5444c5

Contents?: true

Size: 628 Bytes

Versions: 5

Compression:

Stored size: 628 Bytes

Contents

# encoding: utf-8

# connection_spec.rb

require File.expand_path(File.join(File.dirname(__FILE__), %w[.. .. lib bunny]))

describe Bunny do

  it "should raise an error if the wrong user name or password is used" do
    b = Bunny.new(:user => 'wrong')
    lambda { b.start}.should raise_error(Bunny::ProtocolError)
  end

  it "should be able to open a TCPSocket with a timeout" do
    b = Bunny.new(:spec => "0.8")
    connect_timeout = 5
    lambda {
      Bunny::Timer::timeout(connect_timeout, Qrack::ConnectionTimeout) do
        TCPSocket.new(b.host, b.port)
      end
    }.should_not raise_error(Exception)
  end

end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
bunny-0.7.10 spec/spec_08/connection_spec.rb
sparqcode_bunny-0.0.2 spec/spec_08/connection_spec.rb
bunny-0.7.9 spec/spec_08/connection_spec.rb
sparqcode_bunny-0.0.1 spec/spec_08/connection_spec.rb
bunny-0.7.8 spec/spec_08/connection_spec.rb