Keith Rarick | 50b8ccc | 2014-11-12 11:43:30 -0800 | [diff] [blame] | 1 | // Copyright 2014 The Go Authors. |
| 2 | // See https://code.google.com/p/go/source/browse/CONTRIBUTORS |
| 3 | // Licensed under the same terms as Go itself: |
| 4 | // https://code.google.com/p/go/source/browse/LICENSE |
| 5 | |
| 6 | package http2 |
| 7 | |
| 8 | import ( |
| 9 | "errors" |
| 10 | "testing" |
| 11 | ) |
| 12 | |
| 13 | func TestPipeClose(t *testing.T) { |
| 14 | var p pipe |
| 15 | p.c.L = &p.m |
| 16 | a := errors.New("a") |
| 17 | b := errors.New("b") |
| 18 | p.Close(a) |
| 19 | p.Close(b) |
| 20 | _, err := p.Read(make([]byte, 1)) |
| 21 | if err != a { |
| 22 | t.Errorf("err = %v want %v", err, a) |
| 23 | } |
| 24 | } |