Cleanup integration test dir (#3308)

This commit is contained in:
Davis Chase
2023-04-21 09:44:09 -07:00
committed by GitHub
parent 3bc703b0d6
commit 2fd24d31a4
11 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
"""Integration test for Serper.dev's Google Search API Wrapper."""
from langchain.utilities.google_serper import GoogleSerperAPIWrapper
def test_call() -> None:
"""Test that call gives the correct answer."""
search = GoogleSerperAPIWrapper()
output = search.run("What was Obama's first name?")
assert "Barack Hussein Obama II" in output