Sha256: 2c2c436cd38742a05eda5acce1d2b63dde245c2cda3ffc68cc4c76821fe08607

Contents?: true

Size: 515 Bytes

Versions: 2

Compression:

Stored size: 515 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-2.8.0 test/null_sink_test.rb
statsd-instrument-2.7.1 test/null_sink_test.rb