You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
355 B
21 lines
355 B
5 years ago
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSession(t *testing.T) {
|
||
|
asserts := assert.New(t)
|
||
|
|
||
|
handler := Session("2333")
|
||
|
asserts.NotNil(handler)
|
||
|
asserts.NotNil(Store)
|
||
|
asserts.IsType(emptyFunc(), handler)
|
||
|
}
|
||
|
|
||
|
func emptyFunc() gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {}
|
||
|
}
|