27 lines
613 B
Go
27 lines
613 B
Go
// Copyright (c) 2013, Prometheus Team
|
|
// All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package prometheus
|
|
|
|
import (
|
|
. "github.com/matttproud/gocheck"
|
|
)
|
|
|
|
type valueEqualsChecker struct {
|
|
*CheckerInfo
|
|
}
|
|
|
|
var ValueEquals Checker = &valueEqualsChecker{
|
|
&CheckerInfo{Name: "IsValue", Params: []string{"obtained", "expected"}},
|
|
}
|
|
|
|
func (checker *valueEqualsChecker) Check(params []interface{}, names []string) (result bool, error string) {
|
|
actual := params[0].(*item).Value
|
|
expected := params[1]
|
|
|
|
return actual == expected, ""
|
|
}
|