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.
15 lines
242 B
15 lines
242 B
10 years ago
|
package collector
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestLoad(t *testing.T) {
|
||
|
load, err := parseLoad("0.21 0.37 0.39 1/719 19737")
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
if want := 0.21; want != load {
|
||
|
t.Fatalf("want load %f, got %f", want, load)
|
||
|
}
|
||
|
}
|