'use strict';
const response = require('../context').response;
describe('res.writable', function(){
it('should return the request is writable', function(){
const res = response();
res.writable.should.be.ok;
})
describe('when res.socket not present', function (){
it('should return the request is not writable', function (){
res.res.socket = null;
res.writable.should.not.be.ok;