proc4unix/proc_test.go

11 lines
121 B
Go

package proc
import (
"testing"
)
func TestQuery(t *testing.T) {
if _, err := Query(1); err != nil {
t.Fail()
}
}