mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +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
|