summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/prometheus/procfs/stat_test.go
blob: 6eb792478f5079e1250dff28db10a47be4cc37ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package procfs

import "testing"

func TestStat(t *testing.T) {
	s, err := FS("fixtures").NewStat()
	if err != nil {
		t.Fatal(err)
	}

	if want, have := int64(1418183276), s.BootTime; want != have {
		t.Errorf("want boot time %d, have %d", want, have)
	}
}