langchain/tests/integration_tests/document_loaders/parsers/test_public_api.py

12 lines
299 B
Python
Raw Normal View History

from langchain.document_loaders.parsers import __all__
def test_parsers_public_api_correct() -> None:
"""Test public API of parsers for breaking changes."""
assert set(__all__) == {
"PyPDFParser",
"PDFMinerParser",
"PyMuPDFParser",
"PyPDFium2Parser",
}