You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
350 B
16 lines
350 B
package requestmock
|
|
|
|
import (
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/request"
|
|
"github.com/stretchr/testify/mock"
|
|
"io"
|
|
)
|
|
|
|
type RequestMock struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (r RequestMock) Request(method, target string, body io.Reader, opts ...request.Option) *request.Response {
|
|
return r.Called(method, target, body, opts).Get(0).(*request.Response)
|
|
}
|