All examples now build, plus added examples to travis build.

This commit is contained in:
Mark Wolfman
2020-05-03 22:56:35 -05:00
parent 22c3e4dbeb
commit 33817135a0
5 changed files with 66 additions and 52 deletions
+4
View File
@@ -47,3 +47,7 @@ class MarkdownTestCase(unittest.TestCase):
def test_no_text(self):
text = make_sheets.rst_to_latex(None)
self.assertEqual(text, '')
def test_verbatim(self):
text = make_sheets.rst_to_latex('``hello, world``')
self.assertIn(r'\begin{verbatim}', text)