from tamq.cli import completion_script def test_completion_scripts_include_commands(): for shell in ("bash", "zsh", "fish"): script = completion_script(shell) assert "start" in script assert "attach" in script assert "replay" in script