Sha256: afe703af5567baf7c132b3fb600a9239ecc4761fc51bd799066edef85571a9fd
Contents?: true
Size: 633 Bytes
Versions: 2
Compression:
Stored size: 633 Bytes
Contents
require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e warn e.message warn '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.key?('VERBOSE') nulllogger = Object.new nulllogger.instance_eval do |_obj| def method_missing(method, *args) # pass end end $log = nulllogger end require 'fluent/plugin/out_parse_multiple_value_query' class Test::Unit::TestCase end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-parse_multiple_value_query-1.0.0 | test/helper.rb |
fluent-plugin-parse_multiple_value_query-0.0.5 | test/helper.rb |