country-data
Version:
Data about countries - like their ISO codes and currencies
39 lines (30 loc) • 1.13 kB
JavaScript
var callingCodes = require('..').callingCodes.all,
countries = require('..').countries.all,
callingCountries = require('..').callingCountries,
assert = require('assert'),
_ = require('underscore');
describe('calling codes', function () {
describe('list of all calling codes', function () {
_.each(countries, function (country) {
if (country.countryCallingCodes && country.countryCallingCodes.length) {
it('should contain codes for ' + country.name, function () {
assert(
_.every(country.countryCallingCodes, function (code) {
return callingCodes.indexOf(code) > -1
})
)
});
}
});
});
describe('callingCountries', function () {
// console.log(callingCountries);
it('should contain countries with calling codes', function () {
assert( callingCountries.BE );
});
it('should not contain countries without calling codes', function () {
assert( !callingCountries.CP, 'Clipperton Island');
assert( !callingCountries[''], 'empty string' );
});
});
});