mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
21 lines
383 B
Go
21 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)
|
||
|
}
|