mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
25fbe356b4
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
24 lines
869 B
Python
24 lines
869 B
Python
"""Integration test for Stack Exchange."""
|
|
from langchain_community.utilities import StackExchangeAPIWrapper
|
|
|
|
|
|
def test_call() -> None:
|
|
"""Test that call runs."""
|
|
stackexchange = StackExchangeAPIWrapper() # type: ignore[call-arg]
|
|
output = stackexchange.run("zsh: command not found: python")
|
|
assert output != "hello"
|
|
|
|
|
|
def test_failure() -> None:
|
|
"""Test that call that doesn't run."""
|
|
stackexchange = StackExchangeAPIWrapper() # type: ignore[call-arg]
|
|
output = stackexchange.run("sjefbsmnf")
|
|
assert output == "No relevant results found for 'sjefbsmnf' on Stack Overflow"
|
|
|
|
|
|
def test_success() -> None:
|
|
"""Test that call that doesn't run."""
|
|
stackexchange = StackExchangeAPIWrapper() # type: ignore[call-arg]
|
|
output = stackexchange.run("zsh: command not found: python")
|
|
assert "zsh: command not found: python" in output
|