DEBSOURCES
Skip Quicknav
sources / python-pydash / 8.0.5-1 / tests / conftest.py
123456789
from unittest import mock import pytest @pytest.fixture def mock_sleep(): with mock.patch("time.sleep") as mocked: yield mocked