X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/c62e8d404dd179bc5a84794f307120572185e397..a8a47f7846509d22b123f4ab9cfdd7e65ac0d32e:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index a0aeb21..2787287 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -47,12 +47,16 @@ class BaseTestProcess(ABC): paperdoorknob.process(spec) assert buf.getvalue() == b'''\\documentclass{article} \\usepackage{graphicx} -\\usepackage{wrapfig} +\\usepackage{varwidth} +\\usepackage{wrapstuff} \\usepackage[margin=20mm]{geometry} \\begin{document} This is glowfic + You \\emph{sure}? + Pretty sure. + \\end{document} ''' @@ -108,7 +112,7 @@ class TestProcessFromFakeFetcher(BaseTestProcess, unittest.TestCase): def fetcher(self) -> Fetcher: with open('testdata/this-is-glowfic.html', 'rb') as f: - return FakeFetcher({'fic': f.read(9999)}) + return FakeFetcher({'fic?view=flat': f.read(9999)}) if __name__ == '__main__':