Skip to content

Commit

Permalink
Expose bug #494
Browse files Browse the repository at this point in the history
Signed-off-by: beorn7 <beorn@soundcloud.com>
  • Loading branch information
beorn7 committed Nov 13, 2018
1 parent abad2d1 commit 1db4379
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions prometheus/testutil/testutil_test.go
Expand Up @@ -143,6 +143,28 @@ func TestCollectAndCompare(t *testing.T) {
}
}

func TestCollectAndCompareNoLabel(t *testing.T) {
const metadata = `
# HELP some_total A value that represents a counter.
# TYPE some_total counter
`

c := prometheus.NewCounter(prometheus.CounterOpts{
Name: "some_total",
Help: "A value that represents a counter.",
})
c.Inc()

expected := `
some_total 1
`

if err := CollectAndCompare(c, strings.NewReader(metadata+expected), "some_total"); err != nil {
t.Errorf("unexpected collecting result:\n%s", err)
}
}

func TestNoMetricFilter(t *testing.T) {
const metadata = `
# HELP some_total A value that represents a counter.
Expand Down

0 comments on commit 1db4379

Please sign in to comment.