langchain/tests/integration_tests/document_loaders/test_stripe.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
243 B
Python

from langchain.document_loaders.stripe import StripeLoader
def test_stripe_loader() -> None:
"""Test Stripe file loader."""
stripe_loader = StripeLoader("charges")
documents = stripe_loader.load()
assert len(documents) == 1