(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestSession_HasKey(t *testing.T) { |
| 24 | s := New(nil) |
| 25 | key := "hello" |
| 26 | value := "world" |
| 27 | s.Set(key, value) |
| 28 | if !s.HasKey(key) { |
| 29 | t.Fail() |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func TestSession_Float32(t *testing.T) { |
| 34 | s := New(nil) |