(expected)
| 64 | |
| 65 | |
| 66 | function expectBody(expected) { |
| 67 | return mustCall(function(buf, start, len) { |
| 68 | var body = '' + buf.slice(start, start + len); |
| 69 | assert.equal(body, expected); |
| 70 | }); |
| 71 | } |
| 72 | |
| 73 | |
| 74 | // |
no test coverage detected
searching dependent graphs…