8 lines
133 B
Python
8 lines
133 B
Python
import pytest
|
|
from clan_cli.async_run import AsyncRuntime
|
|
|
|
|
|
@pytest.fixture
|
|
def runtime() -> AsyncRuntime:
|
|
return AsyncRuntime()
|