10 lines
214 B
Python
10 lines
214 B
Python
from __future__ import annotations
|
|
|
|
import pdf2md
|
|
|
|
|
|
def test_package_imports() -> None:
|
|
assert pdf2md.__version__ == "0.1.0"
|
|
assert callable(pdf2md.convert_pdf)
|
|
assert callable(pdf2md.recheck_markdown)
|