You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
515 B
19 lines
515 B
from unittest import TestCase
|
|
|
|
from pathlib import Path
|
|
|
|
from src.markdown_converter import MarkdownConverter
|
|
|
|
|
|
class TestMarkdownHeader(TestCase):
|
|
def setUp(self):
|
|
self.converter = MarkdownConverter("test/dokuwiki_example.txt")
|
|
|
|
def test_acceptance_test_case(self):
|
|
# python 3.5 and up
|
|
expected = Path("test/expected_markdown_output.txt").read_text()
|
|
actual = self.converter.convert()
|
|
|
|
print(actual)
|
|
self.assertEqual(expected, actual, "Files not matching!")
|