Still attempting to kill off this delay.
This commit is contained in:
@@ -178,6 +178,19 @@ def test_present_text_records_speech_history_when_enabled():
|
||||
speech_driver.speak.assert_called_once()
|
||||
|
||||
|
||||
@pytest.mark.unit
|
||||
def test_process_mid_word_punctuation_handles_chained_dotted_words():
|
||||
output_manager, _sound_driver, _speech_driver = build_output_manager()
|
||||
|
||||
result = output_manager.process_mid_word_punctuation(
|
||||
".config archive.tar.gz settings.conf."
|
||||
)
|
||||
|
||||
assert result == (
|
||||
"dot config archive dot tar dot gz settings dot conf."
|
||||
)
|
||||
|
||||
|
||||
@pytest.mark.unit
|
||||
def test_present_text_does_not_record_when_speech_disabled():
|
||||
output_manager, _sound_driver, speech_driver = build_output_manager()
|
||||
|
||||
Reference in New Issue
Block a user