X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/5f230208bb5e858cfeadb3d9c822579d2b7b8300..bbfe8e520fea31ad19b8bc2ab5bc02cc5cddb205:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 286d6a9..28408d6 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -35,15 +35,17 @@ class BaseTestProcess(ABC): def testProcess(self) -> None: buf = io.BytesIO() + texifier = PandocTexifier('pandoc') spec = Spec( self.url(), self.fetcher(), FakeImageStore(), lambda x: x, lambda x: None, + texifier, lambda x: x, 20, - ContentOnlyLayout(PandocTexifier('pandoc')), + ContentOnlyLayout(texifier), 'margin=20mm', buf, lambda _: None) @@ -71,6 +73,7 @@ Pretty sure. FakeImageStore(), lambda x: x, lambda x: None, + texifier, lambda x: x, 20, ContentOnlyLayout(texifier), @@ -80,6 +83,7 @@ Pretty sure. paperdoorknob.process(spec) def testPDF(self) -> None: + texifier = PandocTexifier('pandoc') with open("test.tex", 'wb') as out: spec = Spec( self.url(), @@ -87,9 +91,10 @@ Pretty sure. FakeImageStore(), lambda x: x, lambda x: None, + texifier, lambda x: x, 20, - BesideIconLayout(PandocTexifier('pandoc')), + BesideIconLayout(texifier), None, out, lambda _: None)