From: Scott Worley Date: Fri, 26 Jan 2024 06:25:28 +0000 (-0800) Subject: Test bare chunks X-Git-Url: http://git.scottworley.com/paperdoorknob/commitdiff_plain/0668adb72b24796c0c017a3091042a4b2574e082 Test bare chunks --- 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):