Ghost/test/unit/helpers/facebook_url_spec.js

37 lines
1.3 KiB
JavaScript
Raw Normal View History

const should = require('should');
// Stuff we are testing
const helpers = require('../../../core/frontend/helpers');
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'};
helpers.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'};
helpers.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'};
helpers.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(helpers.facebook_url(options), null);
});
});