mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
17 lines
299 B
Go
17 lines
299 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"gotest.tools/assert"
|
||
|
)
|
||
|
|
||
|
func TestOptionWithTimeout(t *testing.T) {
|
||
|
timeout := 10 * time.Second
|
||
|
c, err := NewClientWithOpts(WithTimeout(timeout))
|
||
|
assert.NilError(t, err)
|
||
|
assert.Check(t, c.client != nil)
|
||
|
assert.Equal(t, c.client.Timeout, timeout)
|
||
|
}
|