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