Adds HandlerName()

This commit is contained in:
Manu Mtz-Almeida
2015-06-25 19:44:52 +02:00
parent 1a7ab6e4d5
commit 95c08d5f84
3 changed files with 15 additions and 1 deletions

View File

@ -135,6 +135,17 @@ func TestContextCopy(t *testing.T) {
assert.Equal(t, cp.Params, c.Params)
}
func TestContextHandlerName(t *testing.T) {
c, _, _ := createTestContext()
c.handlers = HandlersChain{func(c *Context) {}, handlerNameTest}
assert.Equal(t, c.HandlerName(), "github.com/gin-gonic/gin.handlerNameTest")
}
func handlerNameTest(c *Context) {
}
func TestContextQuery(t *testing.T) {
c, _, _ := createTestContext()
c.Request, _ = http.NewRequest("GET", "http://example.com/?foo=bar&page=10", nil)