1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/host_test.go

16 lines
211 B
Go
Raw Normal View History

2014-04-22 09:44:22 +09:00
package gopsutil
2014-04-18 16:34:47 +09:00
import (
"testing"
)
func TestHostInfo(t *testing.T) {
v, err := HostInfo()
2014-04-18 16:34:47 +09:00
if err != nil {
t.Errorf("error %v", err)
}
if v.Uptime == 0 {
t.Errorf("Could not get uptime %v", v)
}
}