Sha256: c96cefce2586da99f45231f9ce096cfb5694194dceb1586830d1acf27c8e4b3f
Contents?: true
Size: 1.3 KB
Versions: 32
Compression:
Stored size: 1.3 KB
Contents
# encoding: utf-8 require 'spec_helper' require 'integration/coolio/spec_helper' # # We assume that default connection settings (amqp://guest:guest@localhost:5672/) should work # describe "AMQ::Client::CoolioClient", "Connection.Start", :nojruby => true do include EventedSpec::SpecHelper default_timeout 0.5 context "with valid credentials" do it "should trigger the callback" do coolio do AMQ::Client::CoolioClient.connect do |client| client.should be_opened done end end end end context "with invalid credentials" do context "when given an errback" do it "should trigger the errback" do coolio do AMQ::Client::CoolioClient.connect(:port => 12938, :on_tcp_connection_failure => proc { done }) do |client| raise "This callback should never happen" end end end end context "when given no errback" do it "should raise an error" do expect { coolio do begin AMQ::Client::CoolioClient.connect(:port => 12938) { } done rescue Exception => e done(0.5) end end }.to raise_error(AMQ::Client::TCPConnectionFailed) end end # context end # context end # describe
Version data entries
32 entries across 32 versions & 1 rubygems