mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
20 lines
392 B
Go
20 lines
392 B
Go
package services
|
|
|
|
import (
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"github.com/iwind/TeaGo/logs"
|
|
"testing"
|
|
)
|
|
|
|
func TestDBService_FindAllDBTables(t *testing.T) {
|
|
db, err := dbs.Default()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
ones, _, err := db.FindPreparedOnes("SELECT * FROM information_schema.`TABLES` WHERE TABLE_SCHEMA=?", db.Name())
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
logs.PrintAsJSON(ones, t)
|
|
}
|