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: