Sha256: e58b34bfb123d21595679d1ee636852c3d3e87131e851cc3a989a39df710e8eb

Contents?: true

Size: 592 Bytes

Versions: 17

Compression:

Stored size: 592 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

class Test::Unit::TestCase
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
fluent-plugin-mqtt-io-0.3.0 test/helper.rb
fluent-plugin-festival-0.0.4 test/helper.rb
fluent-plugin-festival-0.0.3 test/helper.rb
fluent-plugin-festival-0.0.2 test/helper.rb
fluent-plugin-mqtt-io-0.2.3 test/helper.rb
fluent-plugin-mqtt-io-0.2.2 test/helper.rb
fluent-plugin-mqtt-io-0.2.1 test/helper.rb
fluent-plugin-mqtt-io-0.2.0 test/helper.rb
fluent-plugin-mqtt-io-0.1.2 test/helper.rb
fluent-plugin-mqtt-io-0.1.1 test/helper.rb
fluent-plugin-mqtt-io-0.1.0 test/helper.rb
fluent-plugin-mqtt-io-0.0.6 test/helper.rb
fluent-plugin-mqtt-io-0.0.5 test/helper.rb
fluent-plugin-mqtt-io-0.0.4 test/helper.rb
fluent-plugin-mqtt-io-0.0.3 test/helper.rb
fluent-plugin-mqtt-io-0.0.2 test/helper.rb
fluent-plugin-mqtt-io-0.0.1 test/helper.rb