rmmagent/agent/tactical/shared/shared_test.go
2022-06-23 16:04:48 -07:00

16 lines
No EOL
265 B
Go

package shared_test
import (
"testing"
"github.com/amidaware/rmmagent/agent/tactical/shared"
)
func TestGetPythonBin(t *testing.T) {
pybin := shared.GetPythonBin()
if pybin == "" {
t.Errorf("expected path, got %s", pybin)
}
t.Logf("result: %s", pybin)
}