2014-10-01 12:42:29 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-12 04:59:30 +00:00
|
|
|
const response = require('../helpers/context').response;
|
2014-10-01 12:42:29 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('res.writable', () => {
|
|
|
|
it('should return the request is writable', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const res = response();
|
2014-10-01 12:42:29 +00:00
|
|
|
res.writable.should.be.ok;
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-10-01 12:42:29 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('when res.socket not present', () => {
|
|
|
|
it('should return the request is not writable', () => {
|
2015-10-05 18:23:47 +00:00
|
|
|
const res = response();
|
2014-10-01 12:42:29 +00:00
|
|
|
res.res.socket = null;
|
|
|
|
res.writable.should.not.be.ok;
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|