mirror of
https://github.com/Sun-ZhenXing/mcp-template-python.git
synced 2026-05-06 14:08:56 +00:00
10 lines
204 B
Python
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
|