caddy/dist/automate_test.go

14 lines
196 B
Go
Raw Normal View History

2016-06-21 14:11:55 +08:00
package main
import (
"runtime"
"testing"
)
func TestNumProcs(t *testing.T) {
n := numProcs()
if n != runtime.NumCPU()-1 {
t.Errorf("Expected numProcs to return NumCPU-1, got %d", n)
}
}