0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/test/unit/shared/i18n_spec.js

11 lines
263 B
JavaScript
Raw Normal View History

const should = require('should');
const I18n = require('../../../core/shared/i18n').I18n;
describe('I18n Class Behaviour', function () {
it('defaults to en', function () {
const i18n = new I18n();
i18n.locale().should.eql('en');
});
});