X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/a0d30541ee9349b8c62200c9aa6d4dbb2873fccb..a2d424680628f747d2ec20f2ae3e3758f0d12cc5:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 7c48607..3637514 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -31,11 +31,15 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler): body = b'''
+
We don't want edit boxes
This is glowfic +
We don't want footers
+
We don't want edit boxes
You sure? +
Pretty sure. @@ -95,13 +99,16 @@ class TestFetch(unittest.TestCase): paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT) self.assertEqual(self._request_counter, 1) - def testFetchConents(self) -> None: + def testReplies(self) -> None: with requests.session() as s: - 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."]) + replies = paperdoorknob.replies( + paperdoorknob.clean( + paperdoorknob.fetch( + f"http://localhost:{self._port()}", + s, + TIMEOUT))) + self.assertEqual([r.text.strip() for r in replies], + ["This is glowfic", "You sure?", "Pretty sure."]) def testFetchErrors(self) -> None: with requests.session() as s: