mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 17:12:46 +00: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)
|