mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
15 lines
276 B
Go
15 lines
276 B
Go
package models_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/TeaOSLab/EdgeAPI/internal/db/models"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
_ "github.com/iwind/TeaGo/bootstrap"
|
|
)
|
|
|
|
func TestMetricStatDAO_Clean(t *testing.T) {
|
|
var dao = models.NewMetricStatDAO()
|
|
t.Log(dao.Clean(nil))
|
|
}
|