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.
telegabber/log_test.go

22 lines
427 B

package main
import (
"testing"
log "github.com/sirupsen/logrus"
)
func TestLogInfo(t *testing.T) {
logrusConstant := stringToLogConstant(":info")
if logrusConstant != log.InfoLevel {
t.Errorf("Wrong logrus constant for info")
}
}
func TestLogInvalid(t *testing.T) {
logrusConstant := stringToLogConstant("ziz")
if logrusConstant != log.FatalLevel {
t.Errorf("Unknown strings should return fatal loglevel")
}
}