Sha256: 56d23a4923455a1f137c2f12d783478e4303bc7ce8dc6de622e7bc66ff80e491

Contents?: true

Size: 708 Bytes

Versions: 13

Compression:

Stored size: 708 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_norikra'
require 'fluent/plugin/out_norikra'
require 'fluent/plugin/out_norikra_filter'

class Test::Unit::TestCase
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
fluent-plugin-norikra-0.4.4 test/helper.rb
fluent-plugin-norikra-0.4.3 test/helper.rb
fluent-plugin-norikra-0.4.2 test/helper.rb
fluent-plugin-norikra-0.4.1 test/helper.rb
fluent-plugin-norikra-0.4.0 test/helper.rb
fluent-plugin-norikra-0.3.0 test/helper.rb
fluent-plugin-norikra-patched-7-0.2.2 test/helper.rb
fluent-plugin-norikra-0.2.2 test/helper.rb
fluent-plugin-norikra-0.2.1 test/helper.rb
fluent-plugin-norikra-0.2.0 test/helper.rb
fluent-plugin-norikra-0.1.2 test/helper.rb
fluent-plugin-norikra-0.1.1 test/helper.rb
fluent-plugin-norikra-0.1.0 test/helper.rb