Sha256: 74eb05ca343dc12d29f4e52981f09a7f74f2035cd28b7f1f010cbd8fc8e4c077

Contents?: true

Size: 618 Bytes

Versions: 4

Compression:

Stored size: 618 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'

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

require 'fluent/plugin/out_mysql_bulk'

class Test::Unit::TestCase
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fluent-plugin-mysql-bulk-0.0.8 test/helper.rb
fluent-plugin-mysql-bulk-0.0.7 test/helper.rb
fluent-plugin-mysql-bulk-0.0.6 test/helper.rb
fluent-plugin-mysql-bulk-0.0.5 test/helper.rb