Sha256: 8380848fc099b7ca06f53e22fefaddbc2692e237c38c5ba28dd090c8c32a2aea

Contents?: true

Size: 690 Bytes

Versions: 10

Compression:

Stored size: 690 Bytes

Contents

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'test/unit'
require 'rr'

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'fluent/test'
unless ENV.has_key?('VERBOSE')
  nulllogger = Object.new
  nulllogger.instance_eval {|obj|
    def method_missing(method, *args)
      # pass
    end
  }
  $log = nulllogger
end

require 'fluent/plugin/out_mackerel'
require 'fluent/plugin/out_mackerel_hostid_tag'

class Test::Unit::TestCase
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fluent-plugin-mackerel-0.1.3 test/helper.rb
fluent-plugin-mackerel-0.1.2 test/helper.rb
fluent-plugin-mackerel-0.1.1 test/helper.rb
fluent-plugin-mackerel-0.1.0 test/helper.rb
fluent-plugin-mackerel-0.0.9 test/helper.rb
fluent-plugin-mackerel-0.0.8 test/helper.rb
fluent-plugin-mackerel-0.0.7 test/helper.rb
fluent-plugin-mackerel-0.0.6 test/helper.rb
fluent-plugin-mackerel-0.0.5 test/helper.rb
fluent-plugin-mackerel-0.0.4 test/helper.rb