add tests for the headers functions

This commit is contained in:
Andreas Zweili 2020-10-12 15:17:43 +02:00
parent 18f9a8b0af
commit 1a2b036fa5
1 changed files with 12 additions and 0 deletions

12
tests/test_header.py Normal file
View File

@ -0,0 +1,12 @@
import url2markdown.header as header
def test_build_header_dict(create_article):
article = create_article()
header._build_header_dict(article)
assert False
def test_get_topics_from_cli():
header._get_topics_from_cli()
assert False