Sha256: c82ff9ab3427edc730b4ec18a693c55d21ef893ffed5285b9b9a73a488a2a34d
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
$LOAD_PATH.unshift 'test' require 'test_helper' require 'mouth/sucker' class SuckerTest < Test::Unit::TestCase def setup end def test_storing_count r = Mouth::Sucker.new r.store!("happening:3|c") assert_equal ({"default.happening" => 3}), r.counters.values.first end def test_storing_count_with_sampling r = Mouth::Sucker.new r.store!("happening:3|c|@0.1") assert_equal ({"default.happening" => 30}), r.counters.values.first end def test_storing_count_with_zero_sampling r = Mouth::Sucker.new r.store!("happening:3|c|@0.0") assert_equal ({"default.happening" => 3}), r.counters.values.first end def test_storing_count_with_big_sampling r = Mouth::Sucker.new r.store!("happening:3|c|@2.0") assert_equal ({"default.happening" => 3}), r.counters.values.first end def test_storing_timer r = Mouth::Sucker.new r.store!("happening:3.7|ms") assert_equal ({"default.happening" => [3.7]}), r.timers.values.first end def test_different_types_of_characters r = Mouth::Sucker.new r.store!("abc/123.hello/789 foobar.baz:3.7|ms") assert_equal ({"abc-123.hello/789_foobar-baz" => [3.7]}), r.timers.values.first end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mouth-0.8.0 | test/sucker_test.rb |