Sha256: 04b0e24cc1c4266f36751f6520cb8043741b8a35a4136bd3576d870e85e2f6dc

Contents?: true

Size: 542 Bytes

Versions: 9

Compression:

Stored size: 542 Bytes

Contents

require "amq/client/adapters/event_machine"
require "amq/client/queue"
require "amq/client/exchange"
require "evented-spec"

case RUBY_VERSION
when "1.8.7" then
  class Array
    alias sample choice
  end
when /^1.9/ then
  Encoding.default_internal = Encoding::UTF_8
  Encoding.default_external = Encoding::UTF_8
end

def em_amqp_connect(&block)
  em do
    AMQ::Client::EventMachineClient.connect(:port => 5672, :vhost => "amq_client_testbed", :frame_max => 65536, :heartbeat_interval => 1) do |client|
      yield client
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha35 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha34 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha33 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha32 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha31 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha30 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha29 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha28 spec/integration/eventmachine/spec_helper.rb
amq-client-0.7.0.alpha27 spec/integration/eventmachine/spec_helper.rb