Ticket #5362: django-contrib-markup-tests.patch
File django-contrib-markup-tests.patch, 629 bytes (added by , 17 years ago) |
---|
-
django/contrib/markup/tests.py
60 60 rendered = t.render(Context(locals())).strip() 61 61 if docutils: 62 62 self.assertEqual(rendered, """<p>Paragraph 1</p> 63 <p>Paragraph 2 with a <a class="reference " href="http://www.example.com/">link</a></p>""")63 <p>Paragraph 2 with a <a class="reference external" href="http://www.example.com/">link</a></p>""") 64 64 else: 65 65 self.assertEqual(rendered, rest_content) 66 66