Sha256: a50268d9057d2bf30958c71a67c0157ec48e1bac1611784564c6e1f459b27e10

Contents?: true

Size: 700 Bytes

Versions: 36

Compression:

Stored size: 700 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'
require "test/unit/rr"

$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_gcloud_pubsub'
require 'fluent/plugin/out_gcloud_pubsub'

class Test::Unit::TestCase
end

Version data entries

36 entries across 36 versions & 3 rubygems

Version Path
fluent-plugin-gcloud-pubsub-custom-1.4.0 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-subscriber-1.3.3 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-subscriber-1.3.3Z test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-subscriber-1.3.2 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-subscriber-1.3.1 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.3.2 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.3.1 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.3.0 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.2.0 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.1.0 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.0.3 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.0.2 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.0.1 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-1.0.0 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-0.4.6 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-0.4.5 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-0.4.4 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-0.4.3 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-0.4.2 test/test_helper.rb
fluent-plugin-gcloud-pubsub-custom-0.4.1 test/test_helper.rb