+ def testDirectTexifier(self) -> None:
+ texifier = VerifyingTexifier(
+ PandocTexifier('pandoc'), DirectTexifier())
+ with DirectFetcher(TIMEOUT) as f:
+ buf = io.BytesIO()
+ spec = Spec(f"http://localhost:{self._port}", f, texifier, buf)
+ paperdoorknob.process(spec)
+