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' $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'fileutils' require 'fluent/log' require 'fluent/test' $log = Fluent::Log.new(STDOUT, Fluent::Log::LEVEL_DEBUG) unless defined?(Test::Unit::AssertionFailedError) class Test::Unit::AssertionFailedError < StandardError end end require 'fluent/plugin/in_mysql_status' class Test::Unit::TestCase end