mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
347 B
21 lines
347 B
package lint
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
var _ fmt.Stringer = Message{}
|
|
|
|
func TestMessage(t *testing.T) {
|
|
m := Message{ErrorSev, "Foo"}
|
|
if m.String() != "[ERROR] Foo" {
|
|
t.Errorf("Unexpected output: %s", m.String())
|
|
}
|
|
|
|
m = Message{WarningSev, "Bar"}
|
|
if m.String() != "[WARNING] Bar" {
|
|
t.Errorf("Unexpected output: %s", m.String())
|
|
}
|
|
}
|