mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-29 02:08:03 +02:00
7 lines
228 B
Python
7 lines
228 B
Python
"""Test Fish shell completion."""
|
|
from map_machine.ui.completion import completion_commands
|
|
|
|
|
|
def test_completion() -> None:
|
|
"""Test Fish shell completion generation."""
|
|
assert completion_commands().startswith("set -l")
|