fix length when .body is missing

This commit is contained in:
dead_horse 2014-04-13 10:23:57 +08:00
parent e8ba41df96
commit 69c82f63b5
2 changed files with 3 additions and 0 deletions

View File

@ -190,6 +190,8 @@ function *respond(next) {
// status body
this.type = 'text';
body = status[code];
if (body) this.length = Buffer.byteLength(body);
return res.end(body);
}
// Buffer body

View File

@ -288,6 +288,7 @@ describe('app.respond', function(){
request(server)
.get('/')
.expect(400)
.expect('Content-Length', 11)
.expect('Bad Request', done);
})
})