Sha256: 3ae5711af299a363d09a0fb694e669f4621e9ca4bec7e83a6d20f2e998394e02
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
require 'helper' class MuninInputTest < Test::Unit::TestCase def setup Fluent::Test.setup end CONFIG = %[ host localhost port 4949 interval 30 tag_prefix input.munin record_hostname yes convert_type no ] def create_driver(conf=CONFIG,tag='test') Fluent::Test::OutputTestDriver.new(Fluent::MuninInput, tag).configure(conf) end def test_configure assert_raise(Fluent::ConfigError) { d = create_driver('') } d = create_driver %[ host localhost port 4949 interval 30 tag_prefix input.munin record_hostname yes convert_type no ] p d.instance.inspect assert_equal 'localhost', d.instance.host assert_equal 4949, d.instance.port assert_equal 30, d.instance.interval assert_equal 'input.munin', d.instance.tag_prefix assert_equal true, d.instance.record_hostname end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-munin-0.3.2 | test/plugin/test_in_munin.rb |
fluent-plugin-munin-0.3.1 | test/plugin/test_in_munin.rb |