@@ -34,6 +34,10 @@ describe( 'test .pluralize', function (){
3434 inflection . pluralize ( 'goose' ) . should . equal ( 'geese' ) ;
3535 inflection . pluralize ( 'tooth' ) . should . equal ( 'teeth' ) ;
3636 inflection . pluralize ( 'teeth' ) . should . equal ( 'teeth' ) ;
37+ inflection . pluralize ( 'knife' ) . should . equal ( 'knives' ) ;
38+ inflection . pluralize ( 'half' ) . should . equal ( 'halves' ) ;
39+ inflection . pluralize ( 'cave' ) . should . equal ( 'caves' ) ;
40+ inflection . pluralize ( 'save' ) . should . equal ( 'saves' ) ;
3741 inflection . pluralize ( 'street' ) . should . equal ( 'streets' ) ;
3842 inflection . pluralize ( 'streets' ) . should . equal ( 'streets' ) ;
3943 inflection . pluralize ( 'data' ) . should . equal ( 'data' ) ;
@@ -77,6 +81,10 @@ describe( 'test .singularize', function (){
7781 inflection . singularize ( 'geese' ) . should . equal ( 'goose' ) ;
7882 inflection . singularize ( 'teeth' ) . should . equal ( 'tooth' ) ;
7983 inflection . singularize ( 'tooth' ) . should . equal ( 'tooth' ) ;
84+ inflection . singularize ( 'knives' ) . should . equal ( 'knife' ) ;
85+ inflection . singularize ( 'halves' ) . should . equal ( 'half' ) ;
86+ inflection . singularize ( 'caves' ) . should . equal ( 'cave' ) ;
87+ inflection . singularize ( 'saves' ) . should . equal ( 'save' ) ;
8088 inflection . singularize ( 'street' ) . should . equal ( 'street' ) ;
8189 inflection . singularize ( 'streets' ) . should . equal ( 'street' ) ;
8290 inflection . singularize ( 'data' ) . should . equal ( 'datum' ) ;
0 commit comments