Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • multiarch-fixes
  • lintian-fixes
  • pristine-tar
  • upstream
  • debian/1.0.0-2
  • debian/1.0.0-1
  • upstream/1.0.0
8 results

sysutil_test.go

Blame
  • Forked from Debian Go Packaging Team / packages / golang-github-chromedp-sysutil
    Source project has a limited visibility.
    sysutil_test.go 245 B
    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))
    }