]> git.scottworley.com Git - paperdoorknob/blobdiff - paperdoorknob_test.py
Drop Post as a class
[paperdoorknob] / paperdoorknob_test.py
index 7658cf424f82e5485cdcf6a160d821f0bb1654a5..35756cbd0c8897533bcbda12dc8b38b6e8f2e3bd 100644 (file)
@@ -99,14 +99,11 @@ class TestFetch(unittest.TestCase):
             paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
             self.assertEqual(self._request_counter, 1)
 
-    def testFetchConents(self) -> None:
+    def testProcess(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."])
-            self.assertEqual([r.text.strip() for r in post.entries()],
+            replies = paperdoorknob.process(
+                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: