1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 08:00:57 +00:00

修改测试用例

This commit is contained in:
qiantao 2020-06-18 17:25:48 +08:00
parent af238ee047
commit 3879fd9c34
2 changed files with 7 additions and 3 deletions

1
go.mod
View File

@ -2,7 +2,6 @@ module github.com/astaxie/beego
require (
github.com/Knetic/govaluate v3.0.0+incompatible // indirect
github.com/OwnLocal/goes v1.0.0
github.com/beego/goyaml2 v0.0.0-20130207012346-5545475820dd
github.com/beego/x2j v0.0.0-20131220205130-a0352aadc542
github.com/bradfitz/gomemcache v0.0.0-20180710155616-bc664df96737

View File

@ -100,6 +100,11 @@ func TestValidation(t *testing.T) {
for _, err := range valid.Errors {
log.Println(err.Key, err.Message)
}
if len(valid.Errors) != 3 {
t.Error("must be has 3 error")
}
} else {
t.Error("must be has 3 error")
}
}