mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-05-30 21:29:28 +02:00
10 lines
206 B
Python
10 lines
206 B
Python
import pytest
|
|
|
|
from fuzzforge_common.sandboxes.engines.podman.engine import Podman
|
|
|
|
|
|
@pytest.fixture
|
|
def podman_engine(podman_socket: str) -> Podman:
|
|
"""TODO."""
|
|
return Podman(socket=podman_socket)
|