mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-15 20:12:30 +00:00
10 lines
296 B
Python
10 lines
296 B
Python
"""Integration test for SerpAPI."""
|
|
from langchain.chains.serpapi import SerpAPIChain
|
|
|
|
|
|
def test_call() -> None:
|
|
"""Test that call gives the correct answer."""
|
|
chain = SerpAPIChain()
|
|
output = chain.search("What was Obama's first name?")
|
|
assert output == "Barack Hussein Obama II"
|