1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 21:44:13 +00:00
Beego/orm/docs/zh/Test.md
2013-08-19 22:37:53 +08:00

652 B

Test ORM

测试代码参见

models_test.go // 表定义
orm_test.go // 测试用例

MySQL

mysql -u root -e 'create database orm_test;'
export ORM_DRIVER=mysql
export ORM_SOURCE="root:@/orm_test?charset=utf8"
go test -v github.com/astaxie/beego/orm

Sqlite3

touch /path/to/orm_test.db
export ORM_DRIVER=sqlite3
export ORM_SOURCE=/path/to/orm_test.db
go test -v github.com/astaxie/beego/orm

PostgreSQL

psql -c 'create database orm_test;' -U postgres
export ORM_DRIVER=postgres
export ORM_SOURCE="user=postgres dbname=orm_test sslmode=disable"
go test -v github.com/astaxie/beego/orm