mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
10 lines
316 B
Python
10 lines
316 B
Python
|
"""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
|