1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-06 23:37:26 +02:00
Files
CasaOS/pkg/utils/file/file_test.go

13 lines
169 B
Go
Raw Normal View History

2023-02-07 10:32:12 +00:00
package file
import (
"fmt"
"testing"
)
func TestNameAccumulation(t *testing.T) {
fmt.Println("aaa")
a := NameAccumulation("/mnt/test_1_1", "/")
fmt.Println(a)
}