diff --git a/tests/test_pandoc.py b/tests/test_pandoc.py index 531e6a2..e25d85f 100644 --- a/tests/test_pandoc.py +++ b/tests/test_pandoc.py @@ -31,6 +31,10 @@ class BuildDocumentTestCase(BaseTestCase): doc = build_document('# test', None) self.assertIn('

test

', doc) + def converts_nothing_if_plain(self): + doc = build_document('test', None) + self.assertIn('test', doc) + def test_bibliography(self): bibliography = { 'references': 'test-files/bib.yaml',