File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 5252 "1000" : " mil"
5353 },
5454 "unitExceptions" : {
55- "1" : " un"
55+ "1000000" : " un millón" ,
56+ "1000000000000" : " un billón" ,
57+ "1000000000000000000" : " un trillón" ,
58+ "1000000000000000000000000" : " un cuatrillones" ,
59+ "1000000000000000000000000000000" : " un quintillón" ,
60+ "1000000000000000000000000000000000000" : " un sextillón" ,
61+ "1000000000000000000000000000000000000000000" : " un septillón" ,
62+ "1000000000000000000000000000000000000000000000000" : " un octillón" ,
63+ "1000000000000000000000000000000000000000000000000000000" : " un nonillón" ,
64+ "1000000000000000000000000000000000000000000000000000000000000" : " un decillón" ,
65+ "1000000000000000000000000000000000000000000000000000000000000000000" : " un undecillón" ,
66+ "1000000000000000000000000000000000000000000000000000000000000000000000000" : " un duodecillón" ,
67+ "1000000000000000000000000000000000000000000000000000000000000000000000000000000" : " un tredecillón" ,
68+ "1000000000000000000000000000000000000000000000000000000000000000000000000000000000000" : " un cuatordecillón" ,
69+ "1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" : " un quindecillón"
5670 },
5771 "units" : [
5872 {
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ describe("written-number", function() {
9797 } ) ;
9898
9999 it ( "correctly converts numbers < 10" , function ( ) {
100+ writtenNumber ( 1 ) . should . equal ( "uno" ) ;
100101 writtenNumber ( 3 ) . should . equal ( "tres" ) ;
101102 writtenNumber ( 8 ) . should . equal ( "ocho" ) ;
102103 } ) ;
@@ -130,7 +131,7 @@ describe("written-number", function() {
130131 "cuatro millones trescientos veintitrés mil cincuenta y cinco"
131132 ) ;
132133 writtenNumber ( 1570025 ) . should . equal (
133- "un millón quinientos setenta mil veinticinco"
134+ "uno millón quinientos setenta mil veinticinco"
134135 ) ;
135136 } ) ;
136137
You can’t perform that action at this time.
0 commit comments