Say I want to write yet another markdown parser and I want it to be thoroughly
tested. I thought I'll create two folders markdown and html each containing
the same filenames. To perform the tests I'll need just a single function:
def test_correct_parsing(md, html):
assert markdown(md) == html
My questions: Is this a good strategy? If so, how can I do it with pytest?