add session test & delete readme

This commit is contained in:
astaxie 2013-05-08 22:31:23 +08:00
parent d6dd84d535
commit db525cba74
2 changed files with 28 additions and 1 deletions

View File

@ -1,5 +1,4 @@
## beego
=======
beego is a Go Framework which is inspired from tornado and sinatra.
It is a simply & powerful web framework.

28
session/sess_test.go Normal file
View File

@ -0,0 +1,28 @@
package session
import (
"testing"
)
func Test_gob(t *testing.T) {
a := make(map[interface{}]interface{})
a["username"] = "astaxie"
a[12] = 234
b, err := encodeGob(a)
if err != nil {
t.Error(err)
}
c, err := decodeGob(b)
if err != nil {
t.Error(err)
}
if len(c) == 0 {
t.Error("decodeGob empty")
}
if c["username"] != "astaxie" {
t.Error("decode string error")
}
if c[12] != 234 {
t.Error("decode int error")
}
}