ignore empty rows

This commit is contained in:
dechert
2021-06-15 18:36:18 +02:00
parent e8be969e98
commit 16d67c49f4
4 changed files with 36 additions and 0 deletions

View File

@@ -24,6 +24,13 @@ class TestDiary(unittest.TestCase):
# assert file was created
assert(os.path.exists(os.path.join(BASE_FODLER, "slide-deck.md")))
def test_csv_input_with_categories_and_empty_rows(self):
# python command_line 2021-01
BASE_FODLER = "test_data"
converter.write_markdown_file('quiz-example-with-category-and-empty-rows.csv')
# assert file was created
assert(os.path.exists(os.path.join(BASE_FODLER, "slide-deck.md")))
def test_to_pdf(self):
# python command_line 2021-01
BASE_FODLER = "test_data"