1 Star 0 Fork 1

winie/sq

forked from unsafe-rust/sq 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
2_connection_test.go 827 Bytes
一键复制 编辑 原始数据 按行查看 历史
unsafe-rust 提交于 2021-03-28 10:11 . update
package sq
import (
_ "github.com/go-sql-driver/mysql"
"os"
"testing"
)
func TestMain(m *testing.M) {
configs := make(map[string]*Config)
dsn1 := os.Getenv("MYSQL_TEST_DSN1")
if dsn1 == "" {
dsn1 = "root:root@tcp(127.0.0.1:3306)/test?charset=utf8&parseTime=True&loc=Asia%2FShanghai"
}
dsn2 := os.Getenv("MYSQL_TEST_DSN2")
if dsn2 == "" {
dsn2 = "root:root@tcp(127.0.0.1:3306)/test2?charset=utf8&parseTime=True&loc=Asia%2FShanghai"
}
configs["default"] = &Config{
Enable: true,
Driver: "mysql",
DSN: dsn1,
ShowSql: true,
}
configs["db2"] = &Config{
Enable: true,
Driver: "mysql",
DSN: dsn2,
ShowSql: true,
}
_ = Connect(configs)
m.Run()
}
func TestConnect(t *testing.T) {
db := GetDB()
if db.DriverName() != "mysql" {
t.Fatalf("sqlx database connection error")
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/winie_admin/sq.git
git@gitee.com:winie_admin/sq.git
winie_admin
sq
sq
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385