Update tests

This commit is contained in:
2025-05-16 17:38:21 +02:00
parent 6daceef913
commit fd2922fde8
19 changed files with 1137 additions and 17 deletions

16
tests/types.py Normal file
View File

@ -0,0 +1,16 @@
"""Typings."""
from dataclasses import dataclass
from collections.abc import Callable
PortFactory = Callable[[], int]
@dataclass
class TestPorts:
"""Test port dataclass."""
backend: int
admin: int
sshd: int