Sha256: c7b53cc8f9341bb3cc9fc9e144daf5417f6834814a06d8943abc1823ad9b5d3e

Contents?: true

Size: 660 Bytes

Versions: 3

Compression:

Stored size: 660 Bytes

Contents

require 'rubygems'
require 'bundler'
require 'fluent/input'

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"

$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/in_azuremonitorlog"

class Test::Unit::TestCase
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-azuremonitorlog-0.0.3 test/helper.rb
fluent-plugin-azuremonitorlog-0.0.2 test/helper.rb
fluent-plugin-azuremonitorlog-0.0.1 test/helper.rb