1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-15 22:49:13 +00:00
Files
rke/vendor/github.com/stretchr/testify/http/test_round_tripper.go
2018-10-26 21:46:20 -07:00

18 lines
377 B
Go

package http
import (
"github.com/stretchr/testify/mock"
"net/http"
)
// TestRoundTripper DEPRECATED USE net/http/httptest
type TestRoundTripper struct {
mock.Mock
}
// RoundTrip DEPRECATED USE net/http/httptest
func (t *TestRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
args := t.Called(req)
return args.Get(0).(*http.Response), args.Error(1)
}