koa-lite/test/response/writeable.js

20 lines
451 B
JavaScript
Raw Normal View History

2014-10-01 12:42:29 +00:00
'use strict';
2014-10-01 12:42:29 +00:00
var response = require('../context').response;
describe('res.writable', function(){
it('should return the request is writable', function(){
var res = response();
res.writable.should.be.ok;
})
describe('when res.socket not present', function (){
it('should return the request is not writable', function (){
var res = response();
res.res.socket = null;
res.writable.should.not.be.ok;
})
})
})