File: metriks_test.rb

package info (click to toggle)
ruby-metriks 0.9.9.8-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: ruby: 1,877; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'test_helper'

class MetriksTest < Test::Unit::TestCase
  def setup
    Metriks::Registry.default.clear
  end

  def teardown
    Metriks::Registry.default.clear
  end

  def test_counter
    assert_not_nil Metriks.counter('testing')
  end

  def test_meter
    assert_not_nil Metriks.meter('testing')
  end

  def test_timer
    assert_not_nil Metriks.timer('testing')
  end

  def test_utilization_timer
    assert_not_nil Metriks.utilization_timer('testing')
  end

  def test_histogram
    assert_not_nil Metriks.histogram('testing')
  end
end