2013-11-13 17:01:15 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2013-11-13 17:01:15 +00:00
|
|
|
var context = require('../context');
|
|
|
|
|
|
|
|
describe('req.stale', function(){
|
|
|
|
it('should be the inverse of req.fresh', function(){
|
|
|
|
var ctx = context();
|
|
|
|
ctx.status = 200;
|
|
|
|
ctx.method = 'GET';
|
|
|
|
ctx.req.headers['if-none-match'] = '"123"';
|
|
|
|
ctx.set('ETag', '"123"');
|
|
|
|
ctx.fresh.should.be.true;
|
|
|
|
ctx.stale.should.be.false;
|
|
|
|
})
|
2015-10-11 22:59:51 +00:00
|
|
|
})
|