10 lines
274 B
Python
10 lines
274 B
Python
|
|
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
|