Files
mcp-template-python/tests/test_block.py
T
2026-04-20 15:54:10 +08:00

10 lines
204 B
Python

import time
import pytest
from blockbuster import BlockingError
async def test_time_sleep() -> None:
with pytest.raises(BlockingError):
time.sleep(0.1) # This should raise a BlockingError