]>
git.scottworley.com Git - paperdoorknob/blob - htmlfilter_test.py
1 # paperdoorknob: Print glowfic
3 # This program is free software: you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License as published by the
5 # Free Software Foundation, version 3.
9 from htmlfilter
import ApplyHTMLFilters
12 class TestHTMLFilters(unittest
.TestCase
):
14 def testStripNBSP(self
) -> None:
18 b
"<p>It's <em>really </em>cold.</p>"),
19 b
"<p>It's <em>really </em>cold.</p>")
22 if __name__
== '__main__':