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