Example #1
0
 def test_replaces_newlines(self):
     """Replaces newlines with <br>."""
     assert models.text2html('foo\nbar') == 'foo<br>bar'
Example #2
0
 def test_replaces_newlines(self):
     """Replaces newlines with <br>."""
     assert models.text2html('foo\nbar') == 'foo<br>bar'
Example #3
0
 def test_escapes_html(self, monkeypatch):
     """Escapes any HTML in the original text."""
     assert models.text2html('<b>') == '&lt;b&gt;'
Example #4
0
 def test_escapes_html(self, monkeypatch):
     """Escapes any HTML in the original text."""
     assert models.text2html('<b>') == '&lt;b&gt;'