X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/fc2aaa75baff15d201153efeeda0c4c5898e4822..0668adb72b24796c0c017a3091042a4b2574e082:/glowfic_test.py diff --git a/glowfic_test.py b/glowfic_test.py index bd26e3c..898aafb 100644 --- a/glowfic_test.py +++ b/glowfic_test.py @@ -88,6 +88,21 @@ class TestMakeChunk(unittest.TestCase): self.assertEqual( PandocTexifier("pandoc").texify(c.character), b'{Keltham}\n') + def testMinimal(self) -> None: + t = Thread(spec_for_testing(b''' + +
+
Just content
+
+ ''')) + c = makeChunk(next(iter(t.chunkDOMs())), FakeImageStore()) + self.assertIsNone(c.icon) + self.assertIsNone(c.character) + self.assertIsNone(c.screen_name) + self.assertIsNone(c.author) + self.assertEqual(str(c.content), + '
Just content
') + class TestThread(unittest.TestCase):