mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
12 lines
299 B
Python
12 lines
299 B
Python
|
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",
|
||
|
}
|