mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
15 lines
361 B
Go
15 lines
361 B
Go
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package dbutils_test
|
|
|
|
import (
|
|
dbutils "github.com/TeaOSLab/EdgeAPI/internal/db/utils"
|
|
_ "github.com/iwind/TeaGo/bootstrap"
|
|
"testing"
|
|
)
|
|
|
|
func TestHasFreeSpace(t *testing.T) {
|
|
t.Log(dbutils.CheckHasFreeSpace())
|
|
t.Log(dbutils.LocalDatabaseDataDir)
|
|
}
|