Sha256: 05faa2a21bf37e23c58456adf636e0add89acc106af04d1b8520da2555d901df

Contents?: true

Size: 796 Bytes

Versions: 16

Compression:

Stored size: 796 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.has_key?('VERBOSE')
  nulllogger = Object.new
  nulllogger.instance_eval {|obj|
    def method_missing(method, *args)
      # pass
    end
  }
  $log = nulllogger
end

require 'fluent/plugin/in_mysql_replicator'
require 'fluent/plugin/in_mysql_replicator_multi'
require 'fluent/plugin/out_mysql_replicator_elasticsearch'
require 'fluent/plugin/out_mysql_replicator_solr'

class Test::Unit::TestCase
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
fluent-plugin-mysql-replicator-1.0.3 test/helper.rb
fluent-plugin-mysql-replicator-1.0.2 test/helper.rb
fluent-plugin-mysql-replicator-0.6.2 test/helper.rb
fluent-plugin-mysql-replicator-1.0.1 test/helper.rb
fluent-plugin-mysql-replicator-1.0.0 test/helper.rb
fluent-plugin-mysql-replicator-0.6.1 test/helper.rb
fluent-plugin-mysql-replicator-0.5.2 test/helper.rb
fluent-plugin-mysql-replicator-0.5.1 test/helper.rb
fluent-plugin-mysql-replicator-0.5.0 test/helper.rb
fluent-plugin-mysql-replicator-0.4.3 test/helper.rb
fluent-plugin-mysql-replicator-0.4.2 test/helper.rb
fluent-plugin-mysql-replicator-0.4.1 test/helper.rb
fluent-plugin-mysql-replicator-0.4.0 test/helper.rb
fluent-plugin-mysql-replicator-0.3.1 test/helper.rb
fluent-plugin-mysql-replicator-0.3.0 test/helper.rb
fluent-plugin-mysql-replicator-0.2.3 test/helper.rb