Andrew Gerrand | 6d10a0c | 2015-10-14 04:11:41 +0000 | [diff] [blame^] | 1 | // Copyright 2014 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
Keith Rarick | 50b8ccc | 2014-11-12 11:43:30 -0800 | [diff] [blame] | 4 | |
| 5 | package http2 |
| 6 | |
| 7 | import ( |
| 8 | "errors" |
| 9 | "testing" |
| 10 | ) |
| 11 | |
| 12 | func TestPipeClose(t *testing.T) { |
| 13 | var p pipe |
| 14 | p.c.L = &p.m |
| 15 | a := errors.New("a") |
| 16 | b := errors.New("b") |
| 17 | p.Close(a) |
| 18 | p.Close(b) |
| 19 | _, err := p.Read(make([]byte, 1)) |
| 20 | if err != a { |
| 21 | t.Errorf("err = %v want %v", err, a) |
| 22 | } |
| 23 | } |