Create cpu_test.go

This commit is contained in:
Oskar 2021-10-22 22:55:25 +02:00 committed by GitHub
parent 02e3d3c439
commit faaa1eabf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

10
stats/cpu_test.go Normal file
View File

@ -0,0 +1,10 @@
package utils
import "testing"
func TestCPU(t *testing.T) {
_, err := CPU()
if err != nil {
t.Fatal(err)
}
}