0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/test/unit/data/meta/published_date_spec.js
Hannah Wolfe 7f1d3ebc07
Move tests from core to root (#11700)
- move all test files from core/test to test/
- updated all imports and other references
- all code inside of core/ is then application code
- tests are correctly at the root level
- consistent with other repos/projects

Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
2020-03-30 16:26:47 +01:00

53 lines
1.8 KiB
JavaScript

var should = require('should'),
getPublishedDate = require('../../../../core/frontend/meta/published_date');
describe('getPublishedDate', function () {
it('should return published at date as ISO 8601 from context if exists', function () {
var pubDate = getPublishedDate({
context: ['post'],
post: {
published_at: new Date('2016-01-01 12:56:45.232Z')
}
});
should.equal(pubDate, '2016-01-01T12:56:45.232Z');
});
it('should return published at over created at date as ISO 8601 if has both', function () {
var pubDate = getPublishedDate({
context: ['post'],
post: {
published_at: new Date('2016-01-01 12:56:45.232Z'),
created_at: new Date('2015-01-01 12:56:45.232Z')
}
});
should.equal(pubDate, '2016-01-01T12:56:45.232Z');
});
it('should return published at date for an amp context', function () {
var pubDate = getPublishedDate({
context: ['amp', 'post'],
post: {
published_at: new Date('2016-01-01 12:56:45.232Z')
}
});
should.equal(pubDate, '2016-01-01T12:56:45.232Z');
});
it('should return null if no update_at date on context', function () {
var pubDate = getPublishedDate({
context: ['author'],
author: {}
});
should.equal(pubDate, null);
});
it('should return null if context and property do not match in name', function () {
var pubDate = getPublishedDate({
context: ['author'],
post: {
published_at: new Date('2016-01-01 12:56:45.232Z')
}
});
should.equal(pubDate, null);
});
});