2013-04-03 20:33:32 +04:00
|
|
|
// Copyright (c) 2013, Prometheus Team
|
2013-02-12 05:36:06 +04:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2012-05-20 01:59:25 +04:00
|
|
|
|
2013-04-03 20:33:32 +04:00
|
|
|
package prometheus
|
2012-05-20 01:59:25 +04:00
|
|
|
|
|
|
|
import (
|
2013-01-18 19:29:47 +04:00
|
|
|
. "github.com/matttproud/gocheck"
|
2012-05-20 01:59:25 +04:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type S struct{}
|
|
|
|
|
|
|
|
var _ = Suite(&S{})
|
|
|
|
|
2013-04-03 20:33:32 +04:00
|
|
|
func TestPrometheus(t *testing.T) {
|
2012-05-20 01:59:25 +04:00
|
|
|
TestingT(t)
|
|
|
|
}
|