Sha256: 35ed245a8fd484ca1bce7282e6d8ba9fee1685cff13569ff6e7a01a2aa1738c5

Contents?: true

Size: 1.25 KB

Versions: 154

Compression:

Stored size: 1.25 KB

Contents

# Copyright 2014 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

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 |_|
    def method_missing(_method, *_args)
      # pass
    end
  end
  # global $log variable is used by fluentd
  $log = nulllogger # rubocop:disable Style/GlobalVars
end

require 'fluent/plugin/out_google_cloud'

Version data entries

154 entries across 154 versions & 2 rubygems

Version Path
fluent-plugin-google-cloud-0.12.10 test/helper.rb
fluent-plugin-google-cloud-0.12.9 test/helper.rb
fluent-plugin-google-cloud-0.12.8 test/helper.rb
fluent-plugin-google-cloud-0.12.7 test/helper.rb
fluent-plugin-google-cloud-0.12.6 test/helper.rb
fluent-plugin-google-cloud-0.12.5 test/helper.rb
fluent-plugin-google-cloud-0.12.5.rc.1 test/helper.rb
fluent-plugin-google-cloud-0.12.4 test/helper.rb
fluent-plugin-google-cloud-0.12.3 test/helper.rb
fluent-plugin-google-cloud-0.12.2 test/helper.rb
fluent-plugin-google-cloud-0.12.1 test/helper.rb
fluent-plugin-google-cloud-0.12.0 test/helper.rb
fluent-plugin-google-cloud-0.11.1 test/helper.rb
fluent-plugin-google-cloud-0.11.0 test/helper.rb
fluent-plugin-google-cloud-0.10.9 test/helper.rb
fluent-plugin-google-cloud-0.10.8 test/helper.rb
fluent-plugin-google-cloud-0.10.7 test/helper.rb
fluent-plugin-google-cloud-0.10.6 test/helper.rb
fluent-plugin-google-cloud-0.10.5 test/helper.rb
fluent-plugin-google-cloud-0.10.4 test/helper.rb