gorm/dialects/mysql/mysql_test.go

13 lines
237 B
Go
Raw Normal View History

2020-02-02 03:35:01 +03:00
package mysql_test
import (
"testing"
"github.com/jinzhu/gorm"
"github.com/jinzhu/gorm/dialects/mysql"
)
func TestOpen(t *testing.T) {
gorm.Open(mysql.Open("gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True"), nil)
}