quGPT / langchain /tests /integration_tests /utilities /test_wolfram_alpha_api.py
IC4T
update
cfd3735
raw
history blame contribute delete
316 Bytes
"""Integration test for Wolfram Alpha API Wrapper."""
from langchain.utilities.wolfram_alpha import WolframAlphaAPIWrapper
def test_call() -> None:
"""Test that call gives the correct answer."""
search = WolframAlphaAPIWrapper()
output = search.run("what is 2x+18=x+5?")
assert "x = -13" in output