mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-06 01:50:25 +08:00
18 lines
289 B
Go
18 lines
289 B
Go
package models
|
|
|
|
import (
|
|
_ "github.com/go-sql-driver/mysql"
|
|
_ "github.com/iwind/TeaGo/bootstrap"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"testing"
|
|
)
|
|
|
|
func TestMetricSumStatDAO_Clean(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
|
|
err := NewMetricSumStatDAO().Clean(nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|