18 lines
351 B
Go
18 lines
351 B
Go
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestNoopReporter(t *testing.T) {
|
||
|
// Make a Reporter:
|
||
|
reporter := NewReporter(Path("/noop"))
|
||
|
assert.NotNil(t, reporter)
|
||
|
assert.Equal(t, "/noop", reporter.Options().Path)
|
||
|
|
||
|
// Check that our implementation is valid:
|
||
|
assert.Implements(t, new(Reporter), reporter)
|
||
|
}
|