mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8dd100a229
Increases the test coverage of pkg/plugins. Changed signature of function NewClientWithTimeout in pkg/plugin/client, to take time.Duration instead of integers. Signed-off-by: Raja Sami <raja.sami@tenpearl.com>
20 lines
383 B
Go
20 lines
383 B
Go
package transport
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestHTTPTransport(t *testing.T) {
|
|
var r io.Reader
|
|
roundTripper := &http.Transport{}
|
|
newTransport := NewHTTPTransport(roundTripper, "http", "0.0.0.0")
|
|
request, err := newTransport.NewRequest("", r)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
assert.Equal(t, "POST", request.Method)
|
|
}
|