Some checks are pending
CI / ruff (push) Waiting to run
CI / mypy (push) Waiting to run
CI / pytest (push) Waiting to run
CI / package (push) Waiting to run
CI / Install smoke (${{ matrix.label }}) (linux, ubuntu-latest) (push) Blocked by required conditions
CI / Install smoke (${{ matrix.label }}) (macos-arm64, macos-14) (push) Blocked by required conditions
10 lines
383 B
Python
10 lines
383 B
Python
from speech_to_speech.LLM.utils import remove_unspeechable
|
||
|
||
|
||
def test_remove_unspeechable_normalizes_smart_apostrophes() -> None:
|
||
assert remove_unspeechable("I’ll reply if here’s the plan.") == "I'll reply if here's the plan."
|
||
|
||
|
||
def test_remove_unspeechable_keeps_text_and_drops_emoji() -> None:
|
||
assert remove_unspeechable("Hello 👋 lobster 🦞") == "Hello lobster "
|