mirror of
https://github.com/enzet/map-machine.git
synced 2025-05-02 11:46:41 +02:00
10 lines
259 B
Python
10 lines
259 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")
|