Sha256: 8fba1afcf112457ad2a6da0dc3cc582bab8b45c4ce44a4c59238c9fa020e4856

Contents?: true

Size: 310 Bytes

Versions: 3

Compression:

Stored size: 310 Bytes

Contents

require 'test/unit'
require 'fileutils'
require 'fluent/log'
require 'rr'

class Test::Unit::TestCase
  include RR::Adapters::TestUnit
end

def ipv6_enabled?
  require 'socket'

  begin
    TCPServer.open("::1", 0)
    true
  rescue
    false
  end
end

$log = Fluent::Log.new(STDOUT, Fluent::Log::LEVEL_WARN)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluentd-0.10.33 test/helper.rb
fluentd-0.10.32 test/helper.rb
fluentd-0.10.31 test/helper.rb