# paperdoorknob: Print glowfic # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, version 3. import unittest from htmlfilter import ApplyHTMLFilters class TestHTMLFilters(unittest.TestCase): def testStripNBSP(self) -> None: self.assertEqual( ApplyHTMLFilters( "NoNBSP", b"

It's really cold.

"), b"

It's really cold.

") if __name__ == '__main__': unittest.main()