escape-test.js revision 9adc89997099d6b58185a60b5288737ab5ed8749
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 () {
}
}));