add supprt for go1.20 http.rwUnwrapper to gin.responseWriter (#3489)
This commit is contained in:
committed by
GitHub
parent
bd82c9e351
commit
c1d06e3d08
@@ -30,6 +30,12 @@ func init() {
|
||||
SetMode(TestMode)
|
||||
}
|
||||
|
||||
func TestResponseWriterUnwrap(t *testing.T) {
|
||||
testWriter := httptest.NewRecorder()
|
||||
writer := &responseWriter{ResponseWriter: testWriter}
|
||||
assert.Same(t, testWriter, writer.Unwrap())
|
||||
}
|
||||
|
||||
func TestResponseWriterReset(t *testing.T) {
|
||||
testWriter := httptest.NewRecorder()
|
||||
writer := &responseWriter{}
|
||||
|
||||
Reference in New Issue
Block a user