blob: 02ee57fad4c8a5df206a37708471f966e11b5d1b [file] [log] [blame]
package sysutil
import (
"testing"
"time"
)
// TestBootTime tests the boot time.
func TestBootTime(t *testing.T) {
t.Logf("boot time: %s", BootTime().Format(time.RFC3339Nano))
t.Logf("now: %s", time.Now().Format(time.RFC3339Nano))
}