(t *testing.T)
| 252 | } |
| 253 | |
| 254 | func TestClientCloseNil(t *testing.T) { |
| 255 | c := NewClient(Config{Caster: "localhost:2101", Mountpoint: "/M", Password: "p"}) |
| 256 | require.NoError(t, c.Close()) |
| 257 | } |
| 258 | |
| 259 | func TestClientClose(t *testing.T) { |
| 260 | client, server := net.Pipe() |