Sha256: 8c96030dd60e7f66036f52487c7c8760ea83295209f7529e644e4e8fe2f64866

Contents?: true

Size: 638 Bytes

Versions: 9

Compression:

Stored size: 638 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/out_file_alternative'

class Test::Unit::TestCase
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fluent-plugin-file-alternative-0.2.2 test/helper.rb
fluent-plugin-file-alternative-0.2.1 test/helper.rb
fluent-plugin-file-alternative-0.2.0 test/helper.rb
fluent-plugin-file-alternative-0.1.5 test/helper.rb
fluent-plugin-file-alternative-0.1.4 test/helper.rb
fluent-plugin-file-alternative-0.1.3 test/helper.rb
fluent-plugin-file-alternative-0.1.2 test/helper.rb
fluent-plugin-file-alternative-0.1.1 test/helper.rb
fluent-plugin-file-alternative-0.1.0 test/helper.rb