mirror of
https://github.com/samuelncui/acp.git
synced 2025-12-23 05:05:15 +00:00
13 lines
216 B
Go
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"))
|
|
}
|