2019-04-09 08:07:30 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-02-07 13:39:24 +00:00
|
|
|
"gotest.tools/v3/assert"
|
2019-04-09 08:07:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|