mirror of https://github.com/go-gorm/gorm.git
36 lines
626 B
Go
36 lines
626 B
Go
package mysql_test
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
"github.com/jinzhu/gorm/dialects/mysql"
|
|
"github.com/jinzhu/gorm/tests"
|
|
)
|
|
|
|
var (
|
|
DB *gorm.DB
|
|
err error
|
|
)
|
|
|
|
func init() {
|
|
dsn := "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
|
|
if os.Getenv("GORM_DSN") != "" {
|
|
dsn = os.Getenv("GORM_DSN")
|
|
}
|
|
|
|
if DB, err = gorm.Open(mysql.Open(dsn), &gorm.Config{}); err != nil {
|
|
panic(fmt.Sprintf("failed to initialize database, got error %v", err))
|
|
}
|
|
}
|
|
|
|
func TestCURD(t *testing.T) {
|
|
tests.RunTestsSuit(t, DB)
|
|
}
|
|
|
|
func TestMigrate(t *testing.T) {
|
|
tests.TestMigrate(t, DB)
|
|
}
|