mirror of https://github.com/gin-gonic/gin.git
Fixed recovery unit tests
This commit is contained in:
parent
ffb5c0412a
commit
1183c1ca8f
|
@ -23,7 +23,8 @@ func TestPanicInHandler(t *testing.T) {
|
|||
w := performRequest(router, "GET", "/recovery")
|
||||
// TEST
|
||||
assert.Equal(t, w.Code, 500)
|
||||
assert.Contains(t, buffer.String(), "Panic recovery -> Oupps, Houston, we have a problem")
|
||||
assert.Contains(t, buffer.String(), "GET /recovery")
|
||||
assert.Contains(t, buffer.String(), "Oupps, Houston, we have a problem")
|
||||
assert.Contains(t, buffer.String(), "TestPanicInHandler")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue