Commit 384c48e4 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Cleaned up some tests I broke as a result of the escapejs changes in [8577].


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8599 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 8f5234d8
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -50,16 +50,16 @@ u'\\\\ : backslashes, too'
u'Hello world'

>>> escapejs(u'"double quotes" and \'single quotes\'')
u'\\"double quotes\\" and \\\'single quotes\\\''
u'\\x22double quotes\\x22 and \\x27single quotes\\x27'

>>> escapejs(ur'\ : backslashes, too')
u'\\\\ : backslashes, too'
u'\\x5C : backslashes, too'

>>> escapejs(u'and lots of whitespace: \r\n\t\v\f\b')
u'and lots of whitespace: \\r\\n\\t\\v\\f\\b'
u'and lots of whitespace: \\x0D\\x0A\\x09\\x0B\\x0C\\x08'

>>> escapejs(ur'<script>and this</script>')
u'<script>and this<\\/script>'
u'\\x3Cscript\\x3Eand this\\x3C/script\\x3E'

>>> fix_ampersands(u'Jack & Jill & Jeroboam')
u'Jack &amp; Jill &amp; Jeroboam'