From b7669c53ffc793f09045213e893f4d69eee7e4e0 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 28 May 2017 14:06:44 +0100 Subject: [PATCH] More tests for pandoc --- tests/test_pandoc.py | 4 ++++ 1 file changed, 4 insertions(+) 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',