0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/test/unit/frontend/helpers/facebook_url.test.js

36 lines
1.3 KiB
JavaScript
Raw Normal View History

const should = require('should');
// Stuff we are testing
const facebook_url = require('../../../../core/frontend/helpers/facebook_url');
describe('{{facebook_url}} helper', function () {
const options = {data: {site: {}}};
beforeEach(function () {
options.data.site = {facebook: ''};
});
it('should output the facebook url for @site, if no other facebook username is provided', function () {
options.data.site = {facebook: 'hey'};
facebook_url.call({}, options).should.equal('https://www.facebook.com/hey');
});
it('should output the facebook url for the local object, if it has one', function () {
options.data.site = {facebook: 'hey'};
facebook_url.call({facebook: 'you/there'}, options).should.equal('https://www.facebook.com/you/there');
});
it('should output the facebook url for the provided username when it is explicitly passed in', function () {
options.data.site = {facebook: 'hey'};
facebook_url.call({facebook: 'you/there'}, 'i/see/you/over/there', options)
.should.equal('https://www.facebook.com/i/see/you/over/there');
});
it('should return null if there are no facebook usernames', function () {
should.equal(facebook_url(options), null);
});
});