Files
acp/fs_test.go
2023-09-22 13:50:57 +08:00

13 lines
216 B
Go

package acp
import "testing"
func TestFS(t *testing.T) {
mpCache, err := getMountpointCache()
if err != nil {
panic(err)
}
t.Log("mp cahce", mpCache("/Users/cuijingning/go/src/github.com/samuelncui/acp"))
}