Files
RMM-Hunter/internal/pkg/hunt/detect/directory/directories_test.go
T

13 lines
201 B
Go

package directory
import "testing"
func TestDetect(t *testing.T) {
directories := Detect()
for _, dir := range directories {
t.Logf("-----")
t.Logf("Directory: %s", dir)
t.Logf("-----")
}
}