Sha256: 91000feb085ee498152bbabf6eaa2da3c4831ae29cf57c177647fdd1770624d6

Contents?: true

Size: 517 Bytes

Versions: 2

Compression:

Stored size: 517 Bytes

Contents

# frozen_string_literal: true

require 'test_helper'

class NullSinkTest < Minitest::Test
  def test_null_sink
    null_sink = StatsD::Instrument::NullSink.new
    null_sink << 'foo:1|c' << 'bar:1|c'
    pass # We don't have anything to assert, except that no exception was raised
  end

  def test_null_sink_sample
    null_sink = StatsD::Instrument::NullSink.new
    assert(null_sink.sample?(0), "The null sink should always sample")
    assert(null_sink.sample?(1), "The null sink should always sample")
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
statsd-instrument-3.0.2 test/null_sink_test.rb
statsd-instrument-3.0.1 test/null_sink_test.rb