Sha256: f732fa0f13b3410cc30022117ea98ccf0e2d2b4bec176f7fefb06c71a717fc89

Contents?: true

Size: 732 Bytes

Versions: 5

Compression:

Stored size: 732 Bytes

Contents

# simplecov must be loaded before any of target code
require 'simplecov'
require 'coveralls'
Coveralls.wear!

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
])

SimpleCov.start do
  add_filter '/test/'
end

# load our target code
$LOAD_PATH.unshift(File.expand_path("../../", __FILE__))
require "test-unit"
require "fluent/test"
require "fluent/test/driver/input"
require "fluent/test/helpers"

require "test/unit/rr"

# require stub_server
require "test/helper/stub_server"
require "test/helper/stub_proxy"

Test::Unit::TestCase.include(Fluent::Test::Helpers)
Test::Unit::TestCase.extend(Fluent::Test::Helpers)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fluent-plugin-http-pull-0.7.0 test/helper.rb
fluent-plugin-http-pull-0.6.1 test/helper.rb
fluent-plugin-http-pull-0.6.0 test/helper.rb
fluent-plugin-http-pull-0.5.0 test/helper.rb
fluent-plugin-http-pull-0.4.0 test/helper.rb