16 lines
No EOL
265 B
Go
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)
|
|
} |