mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
|
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');
|
||
|
});
|
||
|
});
|