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.
25 lines
904 B
Python
25 lines
904 B
Python
from langchain_community.utilities.openweathermap import OpenWeatherMapAPIWrapper
|
|
|
|
|
|
def test_openweathermap_api_wrapper() -> None:
|
|
"""Test that OpenWeatherMapAPIWrapper returns correct data for London, GB."""
|
|
|
|
weather = OpenWeatherMapAPIWrapper() # type: ignore[call-arg]
|
|
weather_data = weather.run("London,GB")
|
|
|
|
assert weather_data is not None
|
|
assert "London" in weather_data
|
|
assert "GB" in weather_data
|
|
assert "Detailed status:" in weather_data
|
|
assert "Wind speed:" in weather_data
|
|
assert "direction:" in weather_data
|
|
assert "Humidity:" in weather_data
|
|
assert "Temperature:" in weather_data
|
|
assert "Current:" in weather_data
|
|
assert "High:" in weather_data
|
|
assert "Low:" in weather_data
|
|
assert "Feels like:" in weather_data
|
|
assert "Rain:" in weather_data
|
|
assert "Heat index:" in weather_data
|
|
assert "Cloud cover:" in weather_data
|