We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3057bf4 commit 874c61eCopy full SHA for 874c61e
src/india_api/internal/inputs/indiadb/test_indiadb.py
@@ -32,6 +32,13 @@ def test_get_predicted_wind_power_production_for_location(
32
for record in result:
33
assert isinstance(record, PredictedPower)
34
35
+ def test_get_predicted_wind_power_production_for_location_raise_error(
36
+ self, client, forecast_values
37
+ ) -> None:
38
+
39
+ with pytest.raises(Exception):
40
+ result = client.get_predicted_wind_power_production_for_location("testID2")
41
42
def test_get_predicted_solar_power_production_for_location(
43
self, client, forecast_values
44
) -> None:
0 commit comments