add supprt for go1.20 http.rwUnwrapper to gin.responseWriter (#3489)

This commit is contained in:
David Desmarais-Michaud
2023-02-12 00:01:43 -05:00
committed by GitHub
parent bd82c9e351
commit c1d06e3d08
2 changed files with 10 additions and 0 deletions
+6
View File
@@ -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{}