Sha256: dc94e197ddc2d94e029d2ed6f21a8b0aca71943500340f82619ea61c26722eca

Contents?: true

Size: 565 Bytes

Versions: 14

Compression:

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


Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
fluent-plugin-cloudstack-0.1.3 test/test_helper.rb
fluent-plugin-cloudstack-0.1.2 test/test_helper.rb
fluent-plugin-cloudstack-0.1.1 test/test_helper.rb
fluent-plugin-network-probe-0.1.0 test/test_helper.rb
fluent-plugin-network-probe-0.0.1 test/test_helper.rb
fluent-plugin-cloudstack-0.1.0 test/test_helper.rb
fluent-plugin-cloudstack-0.0.9 test/test_helper.rb
fluent-plugin-cloudstack-0.0.8 test/test_helper.rb
fluent-plugin-cloudstack-0.0.7 test/test_helper.rb
fluent-plugin-cloudstack-0.0.6 test/test_helper.rb
fluent-plugin-cloudstack-0.0.4 test/test_helper.rb
fluent-plugin-cloudstack-0.0.3 test/test_helper.rb
fluent-plugin-cloudstack-0.0.2 test/test_helper.rb
fluent-plugin-cloudstack-0.0.1 test/test_helper.rb