paperdoorknob.fetch(f"http://localhost:{self._port()}", s, TIMEOUT)
self.assertEqual(self._request_counter, 1)
+ def testFetchConents(self) -> None:
+ with requests.session() as s:
+ doc = paperdoorknob.fetch(
+ f"http://localhost:{self._port()}", s, TIMEOUT)
+ body = doc.body
+ assert body
+ self.assertEqual(body.text, "This is glowfic")
+
def testFetchErrors(self) -> None:
with requests.session() as s:
with self.assertRaises(requests.HTTPError):