fix test config

This commit is contained in:
Lunny Xiao 2013-06-21 12:39:01 +08:00
parent 899887b243
commit 35a48bd776
1 changed files with 6 additions and 1 deletions

View File

@ -7,9 +7,14 @@ import (
var me Engine
/*
CREATE DATABASE IF NOT EXISTS orm_test CHARACTER SET
utf8 COLLATE utf8_general_ci;
*/
func TestMysql(t *testing.T) {
// You should drop all tables before executing this testing
me = Create("mysql", "root:123@/test?charset=utf8")
me = Create("mysql", "root:@/xorm_test?charset=utf8")
me.ShowSQL = true
directCreateTable(&me, t)