Sha256: fd2abce7a89e4e87627bcc3780642603aa13217b96a21842f13b3200b5e8110c

Contents?: true

Size: 737 Bytes

Versions: 8

Compression:

Stored size: 737 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/buffer'
require 'fluent/plugin/buf_memory'
require 'fluent/plugin/buf_file'

require 'fluent/plugin/out_bigquery'

require 'rr'

class Test::Unit::TestCase
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
fluent-plugin-bigquery-custom-0.3.9 test/helper.rb
fluent-plugin-bigquery-custom-0.3.8 test/helper.rb
fluent-plugin-bigquery-0.2.16 test/helper.rb
fluent-plugin-bigquery-custom-0.3.7 test/helper.rb
fluent-plugin-bigquery-custom-0.3.6 test/helper.rb
fluent-plugin-bigquery-custom-0.3.2 test/helper.rb
fluent-plugin-bigquery-custom-0.3.1 test/helper.rb
fluent-plugin-bigquery-custom-0.3.0 test/helper.rb