mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
18 lines
366 B
Go
18 lines
366 B
Go
// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package fsutils_test
|
|
|
|
import (
|
|
fsutils "github.com/TeaOSLab/EdgeNode/internal/utils/fs"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestOpenFile(t *testing.T) {
|
|
f, err := fsutils.OpenFile("./os_test.go", os.O_RDONLY, 0444)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
_ = f.Close()
|
|
}
|