We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bae7793 commit 444a0f7Copy full SHA for 444a0f7
1 file changed
tests/unit_tests/service/test_interface.py
@@ -459,6 +459,12 @@ def test_get_oidc_config(oidc_config: OIDCConfig):
459
assert interface.get_oidc_config() == oidc_config
460
461
462
+def test_get_stomp_config():
463
+ stomp_config = StompConfig(enabled=False)
464
+ interface.set_config(ApplicationConfig(stomp=stomp_config))
465
+ assert interface.get_stomp_config() is stomp_config
466
+
467
468
def test_stomp_config(mock_stomp_client: StompClient):
469
with patch(
470
"blueapi.service.interface.StompClient.for_broker",
0 commit comments