Sha256: fb8c8f7d321b360cf311c2378d0360dbd53aeb8eed4ae6877d701953f5d0da1e

Contents?: true

Size: 632 Bytes

Versions: 18

Compression:

Stored size: 632 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_cloudwatch"

class Test::Unit::TestCase
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
fluent-plugin-cloudwatch-1.2.15 test/helper.rb
fluent-plugin-cloudwatch-1.2.14 test/helper.rb
fluent-plugin-cloudwatch-1.2.13 test/helper.rb
fluent-plugin-cloudwatch-1.2.12 test/helper.rb
fluent-plugin-cloudwatch-1.2.11 test/helper.rb
fluent-plugin-cloudwatch-1.2.10 test/helper.rb
fluent-plugin-cloudwatch-1.2.9 test/helper.rb
fluent-plugin-cloudwatch-1.2.8 test/helper.rb
fluent-plugin-cloudwatch-1.2.7 test/helper.rb
fluent-plugin-cloudwatch-1.2.6 test/helper.rb
fluent-plugin-cloudwatch-1.2.5 test/helper.rb
fluent-plugin-cloudwatch-1.2.4 test/helper.rb
fluent-plugin-cloudwatch-1.2.3 test/helper.rb
fluent-plugin-cloudwatch-1.2.2 test/helper.rb
fluent-plugin-cloudwatch-1.2.1 test/helper.rb
fluent-plugin-cloudwatch-1.2.0 test/helper.rb
fluent-plugin-cloudwatch-1.1.0 test/helper.rb
fluent-plugin-cloudwatch-1.0.0 test/helper.rb