Sha256: 576d0d8cbfae4b428fb49e9fff52c179efe35e8639c3a9f2390f22cc6c40b9ed

Contents?: true

Size: 636 Bytes

Versions: 9

Compression:

Stored size: 636 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.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_referer_parser'

class Test::Unit::TestCase
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fluent-plugin-referer-parser-0.0.9 test/helper.rb
fluent-plugin-referer-parser-0.0.8 test/helper.rb
fluent-plugin-referer-parser-0.0.7 test/helper.rb
fluent-plugin-referer-parser-0.0.6 test/helper.rb
fluent-plugin-referer-parser-0.0.5 test/helper.rb
fluent-plugin-referer-parser-0.0.4 test/helper.rb
fluent-plugin-referer-parser-0.0.3 test/helper.rb
fluent-plugin-referer-parser-0.0.2 test/helper.rb
fluent-plugin-referer-parser-0.0.1 test/helper.rb