Skip to content

Commit

Permalink
Add a test for the markdown/serializers.py change
Browse files Browse the repository at this point in the history
  • Loading branch information
mitya57 committed Sep 25, 2018
1 parent ebe3485 commit dc1a4e5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_syntax/inline/test_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,7 @@ def test_amp_in_url(self):
'[title](http://example.com/?a=1&b=2)',
'<p><a href="http://example.com/?a=1&amp;b=2">title</a></p>'
)
self.assertMarkdownRenders(
'[title](http://example.com/?a=1&#x26;b=2)',
'<p><a href="http://example.com/?a=1&#x26;b=2">title</a></p>'
)

0 comments on commit dc1a4e5

Please sign in to comment.