Sha256: f00020e56af9f4a8b63d5088d90b5fe7488a3bbf93ad8b50736fb6d17bdf212c
Contents?: true
Size: 655 Bytes
Versions: 4
Compression:
Stored size: 655 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_cloudwatch" class Test::Unit::TestCase end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-cloudwatch-2.1.1 | test/helper.rb |
fluent-plugin-cloudwatch-2.1.0 | test/helper.rb |
fluent-plugin-cloudwatch-2.0.1 | test/helper.rb |
fluent-plugin-cloudwatch-2.0.0 | test/helper.rb |