escape-test.js revision 51eb59b098a3ad87376f1ac4d405799c7651a084
name: 'Escape',
'html() should escape HTML characters': function () {
},
'html() should coerce non-strings to strings': function () {
},
'regex() should escape regular expression characters': function () {
Assert.areSame('\\-\\#\\$\\^\\*\\(\\)\\+\\[\\]\\{\\}\\|\\\\\\\,\\.\\?\\ \\\t', Escape.regex('-#$^*()+[]{}|\\,.? \t'));
},
'regex() should coerce non-strings to strings': function () {
},
'regexp() should be an alias for regex()': function () {
}
}));