Files
msw-open-music/internal/pkg/tmpfs/tmpfs_test.go
2021-05-25 12:49:51 +08:00

13 lines
203 B
Go

package tmpfs
import "testing"
func TestTmpfs(t *testing.T) {
t.Log("Starting ...")
tmpfs := NewTmpfs()
tmpfs.FileLifeTime = 1
tmpfs.Record("/tmp/testfile")
t.Log(tmpfs.record)
tmpfs.wg.Wait()
}