Skip to content
Snippets Groups Projects
Unverified Commit c438c622 authored by Siraj R Aizlewood's avatar Siraj R Aizlewood
Browse files

More test coverage.

parent c5d6d022
No related branches found
No related tags found
No related merge requests found
...@@ -640,6 +640,28 @@ class TestRouteLayer: ...@@ -640,6 +640,28 @@ class TestRouteLayer:
assert "Route 1" in matched_routes, "Expected 'Route 1' to be a match" assert "Route 1" in matched_routes, "Expected 'Route 1' to be a match"
assert "Route 2" in matched_routes, "Expected 'Route 2' to be a match" assert "Route 2" in matched_routes, "Expected 'Route 2' to be a match"
def test_set_aggregation_method_with_unsupported_value(
self, openai_encoder, routes, index_cls
):
route_layer = RouteLayer(
encoder=openai_encoder, routes=routes, index=index_cls()
)
unsupported_aggregation = "unsupported_aggregation_method"
with pytest.raises(
ValueError,
match=f"Unsupported aggregation method chosen: {unsupported_aggregation}. Choose either 'SUM', 'MEAN', or 'MAX'.",
):
route_layer._set_aggregation_method(unsupported_aggregation)
def test_refresh_routes_not_implemented(self, openai_encoder, routes, index_cls):
route_layer = RouteLayer(
encoder=openai_encoder, routes=routes, index=index_cls()
)
with pytest.raises(
NotImplementedError, match="This method has not yet been implemented."
):
route_layer._refresh_routes()
class TestLayerFit: class TestLayerFit:
def test_eval(self, openai_encoder, routes, test_data): def test_eval(self, openai_encoder, routes, test_data):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment