Ghost/core/test/unit/helpers/lang_spec.js
kirrg001 5f5f0021db 🔥 Drop Node v4 Support
no issue

- support ends today
- see https://github.com/nodejs/Release
- removed `use strict`
2018-05-01 14:06:18 +02:00

23 lines
656 B
JavaScript

const should = require('should'),
settingsCache = require('../../../server/services/settings/cache'),
helpers = require('../../../server/helpers'),
proxy = require('../../../server/helpers/proxy');
describe('{{lang}} helper', function () {
beforeEach(function () {
settingsCache.set('default_locale', {value: 'en'});
});
afterEach(function () {
settingsCache.shutdown();
});
it('returns correct language tag', function () {
let expected = proxy.i18n.locale(),
rendered = helpers.lang.call();
should.exist(rendered);
rendered.string.should.equal(expected);
});
});