mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-04 20:24:02 +00:00
17 lines
203 B
Go
17 lines
203 B
Go
package tools
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
)
|
|
|
|
func TestGetFileSystem(t *testing.T) {
|
|
fs, err := GetFileSystem("/")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
t.Log(spew.Sdump(fs))
|
|
}
|