mirror of
https://github.com/hwchase17/langchain.git
synced 2026-03-18 19:18:48 +00:00
10 lines
247 B
Python
10 lines
247 B
Python
"""Integration test for Sms."""
|
|
from langchain.utilities.twilio import TwilioAPIWrapper
|
|
|
|
|
|
def test_call() -> None:
|
|
"""Test that call runs."""
|
|
twilio = TwilioAPIWrapper()
|
|
output = twilio.run("Message", "+16162904619")
|
|
assert output
|