Skip to content

Commit 0ac9a94

Browse files
committed
Update tests
1 parent 0fc6292 commit 0ac9a94

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tests/test_eventable.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ def all_unique_eventables() -> List[Type[Eventable]]:
135135
)
136136
],
137137
supports_handled_streaming=True,
138+
supports_home_control=True,
138139
)
139140
],
140141
"intent": [
@@ -250,6 +251,8 @@ def all_unique_eventables() -> List[Type[Eventable]]:
250251
"context": TEST_CONTEXT,
251252
},
252253
"NotRecognized": {"text": TEST_TEXT, "context": TEST_CONTEXT},
254+
"IntentsStart": {"context": TEST_CONTEXT},
255+
"IntentsStop": {"context": TEST_CONTEXT},
253256
# handle
254257
"Handled": {
255258
"text": TEST_TEXT,
@@ -287,6 +290,11 @@ def all_unique_eventables() -> List[Type[Eventable]]:
287290
"Ping": {},
288291
"Pong": {},
289292
"RunPipeline": {"start_stage": PipelineStage.ASR, "end_stage": PipelineStage.TTS},
293+
"UserEvent": {
294+
"name": TEST_NAME,
295+
"data": {TEST_ID: TEST_TEXT},
296+
"context": TEST_CONTEXT,
297+
},
290298
}
291299

292300

0 commit comments

Comments
 (0)