X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/6409066b6abbe205fa64f844a01516f3f3de2553..170e50a0efa18ed0f5f2ff644793469894983029:/paperdoorknob_test.py
diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py
index 83cf76a..7658cf4 100644
--- a/paperdoorknob_test.py
+++ b/paperdoorknob_test.py
@@ -31,7 +31,19 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler):
body = b'''
+
We don't want edit boxes
This is glowfic
+
+
+
+
+
We don't want edit boxes
+ You sure?
+
+
+
+ Pretty sure.
+
'''
@@ -92,6 +104,10 @@ class TestFetch(unittest.TestCase):
post = paperdoorknob.Post(paperdoorknob.fetch(
f"http://localhost:{self._port()}", s, TIMEOUT))
self.assertEqual(post.text().text.strip(), "This is glowfic")
+ self.assertEqual([r.text.strip() for r in post.replies()],
+ ["You sure?", "Pretty sure."])
+ self.assertEqual([r.text.strip() for r in post.entries()],
+ ["This is glowfic", "You sure?", "Pretty sure."])
def testFetchErrors(self) -> None:
with requests.session() as s: