mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
250d571fe6
no issue - add mocha option to jshintrc, no need to define globals in files anymore - call client grunt commands in case of jshint/jscs
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
var should = require('should'),
|
|
rewire = require('rewire'),
|
|
config = rewire('../../../server/config'),
|
|
api = rewire(config.paths.corePath + '/server/api');
|
|
|
|
describe('API: index', function () {
|
|
describe('fn: cacheInvalidationHeader', function () {
|
|
it('/schedules/posts should invalidate cache', function () {
|
|
var cacheInvalidationHeader = api.__get__('cacheInvalidationHeader'),
|
|
result = cacheInvalidationHeader({
|
|
_parsedUrl: {
|
|
pathname: '/schedules/posts/1'
|
|
},
|
|
method: 'PUT'
|
|
}, {});
|
|
|
|
result.should.eql('/*');
|
|
});
|
|
|
|
it('/schedules/something should NOT invalidate cache', function () {
|
|
var cacheInvalidationHeader = api.__get__('cacheInvalidationHeader'),
|
|
result = cacheInvalidationHeader({
|
|
_parsedUrl: {
|
|
pathname: '/schedules/something'
|
|
},
|
|
method: 'PUT'
|
|
}, {});
|
|
|
|
should.not.exist(result);
|
|
});
|
|
});
|
|
});
|