mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
44982c775e
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
16 lines
299 B
Go
16 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)
|
|
}
|