mirror of
https://github.com/HChaZZY/alist.git
synced 2025-12-23 10:36:29 +08:00
14 lines
219 B
Go
14 lines
219 B
Go
package offline_download
|
|
|
|
import "testing"
|
|
|
|
func TestGetFiles(t *testing.T) {
|
|
files, err := GetFiles("..")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
for _, file := range files {
|
|
t.Log(file.Name, file.Size, file.Path)
|
|
}
|
|
}
|