CasaOS/pkg/utils/file/file_test.go
Tiger Wang d8a5d9d0b7 wip
Signed-off-by: Tiger Wang <tigerwang@outlook.com>
2023-03-19 00:23:19 +00: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)
}