name: 'Text.AccentFold',
// -- canFold() -------------------------------------------------------
'canFold() should return true if any characters can be folded': function () {
},
'canFold() should return false when no characters can be folded': function () {
},
// -- compare() ------------------------------------------------------------
'compare() should return true when folded strings match': function () {
},
"compare() should return false when folded strings don't match": function () {
},
'compare() should support a custom comparison function': function () {
return true;
}));
},
// -- filter() -------------------------------------------------------------
'filter() should pass accent-folded items to the supplied function': function () {
var items = [];
});
},
'filter() should filter the supplied array': function () {
return item === 'eee';
}));
},
// -- fold() ---------------------------------------------------------------
'fold() should fold lowercase accented letters to ASCII': function () {
},
'fold() should fold uppercase accented letters to lowercase ASCII': function () {
}
}));