cldr
Version:
Library for extracting data from CLDR (the Unicode Common Locale Data Repository)
49 lines (42 loc) • 1.25 kB
JavaScript
const expect = require('unexpected');
const cldr = require('../lib/cldr');
describe('extractLanguageSupplementalData', () => {
it('should return an object with locale ids as keys and objects as values', () => {
expect(cldr.extractLanguageSupplementalData(), 'to satisfy', {
en: {},
fr: {},
});
});
it('should return a list of scripts for English', () => {
expect(cldr.extractLanguageSupplementalData(), 'to satisfy', {
en: {
scripts: ['Latn'],
},
});
});
it('should return a list of territories for English', () => {
expect(cldr.extractLanguageSupplementalData(), 'to satisfy', {
en: {
territories: expect.it('to contain', 'GB', 'US'),
},
});
});
it('should return a list of secondary scripts for English', () => {
expect(cldr.extractLanguageSupplementalData(), 'to satisfy', {
en: {
secondary: {
scripts: ['Dsrt', 'Shaw'],
},
},
});
});
it('should return a list of secondary territories for English', () => {
expect(cldr.extractLanguageSupplementalData(), 'to satisfy', {
en: {
secondary: {
territories: expect.it('to contain', 'CZ', 'DE'),
},
},
});
});
});