langchain/tests/integration_tests/document_loaders/test_modern_treasury.py
Davis Chase e7e29f9937
Dev2049/add modern treasury (#3924)
Modified Modern Treasury and Strip slightly so credentials don't have to
be passed in explicitly. Thanks @mattgmarcus for adding Modern Treasury!

---------

Co-authored-by: Matt Marcus <matt.g.marcus@gmail.com>
2023-05-01 20:28:02 -07:00

10 lines
311 B
Python

from langchain.document_loaders.modern_treasury import ModernTreasuryLoader
def test_modern_treasury_loader() -> None:
"""Test Modern Treasury file loader."""
modern_treasury_loader = ModernTreasuryLoader("payment_orders")
documents = modern_treasury_loader.load()
assert len(documents) == 1