map-machine/tests/test_completion.py
2022-07-18 23:31:23 +03:00

8 lines
257 B
Python

"""Test Fish shell completion."""
from map_machine.ui.completion import completion_commands
def test_completion() -> None:
"""Test Fish shell completion generation."""
commands: str = completion_commands()
assert commands.startswith("set -l")