Sha256: f95d60643d20d7da39c134ba9267c29c3d067168aa634ca0c5cfba3b17f2d5a8
Contents?: true
Size: 757 Bytes
Versions: 54
Compression:
Stored size: 757 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 __dir = File.join(File.dirname(File.expand_path(__FILE__)), "..") require File.join(__dir, "example_helper") begin EventMachine.run do AMQ::Client::EventMachineClient.connect(:port => 5672, :vhost => "/amq_client_testbed", :user => "amq_client_gem", :password => "a password that is incorrect #{Time.now.to_i}") do |client| raise "Should not really be executed" end end rescue AMQ::Client::PossibleAuthenticationFailureError => afe puts "Authentication failed, as expected. Caught #{afe.inspect}" EventMachine.stop if EventMachine.reactor_running? end
Version data entries
54 entries across 54 versions & 1 rubygems