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
2023-03-18 20:55:51 -04:00

17 lines
215 B
Go

package file
import (
"fmt"
"testing"
"go.uber.org/goleak"
)
func TestNameAccumulation(t *testing.T) {
goleak.VerifyNone(t)
fmt.Println("aaa")
a := NameAccumulation("/mnt/test_1_1", "/")
fmt.Println(a)
}