tmux-amq/tests/test_completion.py

10 lines
274 B
Python
Raw Normal View History

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